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.
 
 
 
 
 
 

16 lines
332 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Steven
  5. * Date: 2017/3/10
  6. * Time: 9:41
  7. */
  8. require_once dirname(__FILE__) . '/../init.php';
  9. include '../../Ctrip/Api/Hotel.php';
  10. $objSoapServer = new SoapServer("Hotel.wsdl");
  11. $objSoapServer->setClass("Hotel");//注册person类的所有方法
  12. $objSoapServer->handle();//处理请求
  13. ?>