Download the PHP package cap60552/php-sip2 without Composer
On this page you can find all versions of the php package cap60552/php-sip2. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download cap60552/php-sip2
More information about cap60552/php-sip2
Files in cap60552/php-sip2
Download cap60552/php-sip2
More information about cap60552/php-sip2
Files in cap60552/php-sip2
Vendor cap60552
Package php-sip2
Short Description PHP class library to facilitate communication with Integrated Library System (ILS) servers via 3M's SIP2.
License GPL-3.0
Homepage https://github.com/cap60552/php-sip2
Package php-sip2
Short Description PHP class library to facilitate communication with Integrated Library System (ILS) servers via 3M's SIP2.
License GPL-3.0
Homepage https://github.com/cap60552/php-sip2
Please rate this library. Is it a good library?
Informations about the package php-sip2
SIP2 communication library for PHP
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:
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!
All versions of php-sip2 with dependencies
PHP Build Version
Package Version
No informations.
The package cap60552/php-sip2 contains the following files
Loading the files please wait ....