aleplusplus / soapclient-curl-php
Soap Client using Curl
Installs: 3 755
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 1
Open Issues: 1
Requires
- php: >=5.4.0
- ext-curl: *
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ~5.6
This package is not auto-updated.
Last update: 2025-04-16 10:55:08 UTC
README
Install:
Via composer:
$ composer require aleplusplus/soapclient-curl-php
Example:
Using the SoapClientCurl\SoapClientRequest
in SOAP Server of SRI:
use SoapClientCurl\SoapClientRequest; // Url Soap Server Example $url = '<SOAP_SERVER_URL>'; $body = '<SOAP_SCHEMA>'; $headers = array('Content-Type: text/xml; charset=utf-8', 'Content-Length: '.strlen($body)); $result = SoapClientRequest::send($url, $headers, $body); print_r($result);
For more detail see test.