nathan242 / php-icap-client
Internet Content Adaptation Protocol (ICAP) client library
Installs: 6 805
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-04-20 21:43:24 UTC
README
PHP ICAP client.
Allows you to send requests to Internet Content Adaptation Protocol (ICAP) servers from PHP.
Usage
Instantiate the class with the ICAP server address and port:
$icap = new IcapClient('127.0.0.1', 13440);
Send an OPTIONS request to the "example" service:
$icap->options('example');
Send a REQMOD and RESPMOD request to the "example" service:
$icap->reqmod( 'example', [ 'req-hdr' => "POST /test HTTP/1.1\r\nHost: 127.0.0.1\r\n\r\n", 'req-body' => 'This is another test.' ] ); $icap->respmod( 'example', [ 'res-hdr' => "HTTP/1.1 200 OK\r\nServer: Test/0.0.1\r\nContent-Type: text/html\r\n\r\n", 'res-body' => 'This is a test.' ] );
Successful requests will return an array describing the response:
Array
(
[protocol] => Array
(
[icap] => ICAP/1.0
[code] => 200
[message] => OK
)
[headers] => Array
(
[Date] => Wed, 03 Jul 2019 22:11:33 GMT
[ISTag] => X7K07GDZQW702ZVLSG6WWO0EPE2CTOMR
[Encapsulated] => res-hdr=0, res-body=64
[Server] => ICAP/1.3 Python/2.7.3
)
[body] => Array
(
[res-hdr] => HTTP/1.1 200 OK
content-type: text/html
server: Test/0.0.1
[res-body] => This is a test.
)
[rawBody] => HTTP/1.1 200 OK
content-type: text/html
server: Test/0.0.1
f
This is a test.
0
)