PHP Package: php-soap/wsdl

PHP library for SOAP web service definition language (WSDL) handling in an efficient manner, providing streamlined integration and management.

Current Version: 1.13.0
Last Updated: 2025-01-24
PHP Requirement: ~8.2.0 || ~8.3.0 || ~8.4.0
Dependencies:
php-soap/wsdl-helper
php-soap/wsdl-generator
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

The PHP SOAP WSDL library simplifies the handling of SOAP Web Service Definition Language (WSDL) in PHP applications, enabling developers to seamlessly integrate and manage SOAP-based services. This library offers comprehensive support for generating and consuming WSDL files, facilitating efficient communication between web services and clients. With a focus on performance and reliability, it enhances the development process by abstracting complexities and ensuring compatibility across different platforms.

🔗 View on GitHub

Download Latest Version: 1.13.0

Download Download v1.13.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/php-soap/wsdl/1.13.0/loader.php';
require_once 'libs/php-soap/wsdl-helper/{lib_version}/loader.php';
require_once 'libs/php-soap/wsdl-generator/{lib_version}/loader.php';

use PhpSoap\WSDL\WSDLHandler;
use PhpSoap\WSDLHelper\WSDLHelper;
use PhpSoap\WSDLGenerator\WSDLGenerator;

$obj = new WSDLHandler();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.