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.
 
 
 
 
 
 

22 lines
330 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Steven
  5. * Date: 2017/3/10
  6. * Time: 9:41
  7. */
  8. class ZzcxService
  9. {
  10. public function Hello()
  11. {
  12. echo 'hello good';
  13. }
  14. }
  15. $server = new SoapServer('ZzcxService.wsdl');
  16. $server->setClass("ZzcxService"); //注册Service类的所有方法
  17. $server->handle(); //处理请求
  18. ?>