phptrycatch异常处理结构
try{
// if(!empty($UserCode)){
$url= '';
$client=new\SoapClient($url);
$userLogin=new\stdClass();
$userLogin->UserCode=$UserCode;
$userLogin->ExpirDate=2;
$loginResponse=$client->__call("GetToken",array(
$userLogin
));
$token=$loginResponse->GetTokenResult;
}catch(\Exception$e) { //千万要注意这里的 \ 很重要!!!否则不执行这里来
$token='';
}
文章名称:phptrycatch异常处理结构
网址分享:http://pwwzsj.com/article/ppsiej.html