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
- */
- require_once dirname(__FILE__) . '/../init.php';
- include '../../Ctrip/Api/Hotel.php';
- $objSoapServer = new SoapServer("Hotel.wsdl");
- $objSoapServer->setClass("Hotel");//注册person类的所有方法
- $objSoapServer->handle();//处理请求
- ?>
|