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.
|
- <?php
-
- /**
- * Created by PhpStorm.
- * User: Steven
- * Date: 2017/3/10
- * Time: 9:41
- */
- class ZzcxService
- {
- public function Hello()
- {
- echo 'hello good';
- }
- }
-
- $server = new SoapServer('ZzcxService.wsdl');
- $server->setClass("ZzcxService"); //注册Service类的所有方法
- $server->handle(); //处理请求
- ?>
|