You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
123456789101112 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Steven
- * Date: 2017/3/10
- * Time: 9:39
- */
- include_once '../ZzcxService.php';
- include_once 'SoapDiscovery.class.php';
- $wsdl = new SoapDiscovery('Service', 'soap');//第一参数为类名,也是生成wsdl的文件名Service.wsdl,第二个参数是服务的名字可以随便写
- $wsdl->getWSDL();
- ?>
|