cap60552/php-sip2

PHP class library to facilitate communication with Integrated Library System (ILS) servers via 3M's SIP2.

v1.0.0 2015-11-03 04:42 UTC

This package is not auto-updated.

Last update: 2024-04-17 15:43:23 UTC


README

PHP class library to facilitate communication with Integrated Library System (ILS) servers via 3M's SIP2.

Composer Installation

To install this package, run this command:

composer require cap60552/php-sip2

General Installation

Copy the sip2.class.php file to a location in your php_include path.

General Usage

// create object
$mysip = new sip2;

// Set host name
$mysip->hostname = 'server.example.com';
$mysip->port = 6002;

// Identify a patron
$mysip->patron = '101010101';
$mysip->patronpwd = '010101';

// connect to SIP server 
$result = $mysip->connect();

// Get Charged Items Raw response
$in = $mysip->msgPatronInformation('charged');

// parse the raw response into an array
$result = $mysip->parsePatronInfoResponse( $mysip->get_message($in) );

Contribution

Feel free to contribute!