noiselabs/nusoap-bundle
最新稳定版本:0.2.2
Composer 安装命令:
composer require noiselabs/nusoap-bundle
包简介
Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP
关键字:
README 文档
README
Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP.
Requirements
Installation (Composer)
0. Install Composer
If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:
curl -s http://getcomposer.org/installer | php
1. Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require noiselabs/nusoap-bundle
2. Enable the Bundle
Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:
// app/AppKernel.php class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new NoiseLabs\Bundle\NuSOAPBundle\NoiseLabsNuSOAPBundle(), ); // ... } }
Usage
$client = new \nusoap_client('http://example.com/url/to/some/valid.wsdl', true); $response = $client->call('someSOAPMethod', array('param1'=>'foo', 'param2'=>'bar'));
统计信息
- 总下载量: 532.23k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 22
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0
- 更新时间: 2012-08-13