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.
 
 
 
 
 
 

14 lines
384 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Steven
  5. * Date: 2017/3/10
  6. * Time: 9:39
  7. * 生成WSDL文件
  8. */
  9. include '../../Ctrip/Api/Hotel.php';
  10. include '../../Ctrip/Common/SoapDiscovery.class.php';
  11. $service=new SoapDiscovery('Hotel','Hotel');//第一参数为类名,也是生成wsdl的文件名Service.wsdl,第二个参数是服务的名字可以随便写
  12. $service->getWSDL();
  13. ?>