01 | class SoapClientX extends SoapClient { |
02 | private $timeout ; |
03 | function __construct( $wdsl , $options = array ()) { |
04 | // 考虑到不和原函数冲突. |
05 | if (isset ( $options [ 'timeout' ] )) { |
06 | $this ->timeout = intval ( $options [ 'timeout' ] ); |
07 | } else { |
08 | $this ->timeout = 10; |
09 | } |
10 | parent::__construct ( $wdsl , $options ); |
11 | } |
12 | public function __doRequest( $request , $location , $action , $version , $one_way = false) { |
13 | ini_set ( 'default_socket_timeout' , $this ->timeout ); |
14 | try { |
15 | // 当超时返回空时,表示非正常报文返回,出现"Error Fetching http headers"异常 |
16 | $response = parent::__doRequest ( $request , $location , $action , $version , $one_way ); |
17 | } catch ( Exception $e ) { |
18 | if ( stristr ( $e ->getMessage (), "Error Fetching http headers" )) { |
19 | throw new SoapFault ( 'timeout' , "请求超时" ); |
20 | } |
21 | } |
22 | if (! $response ) { |
23 | throw new SoapFault ( 'timeout' , "请求超时" ); |
24 | } |
25 | return ( $response ); |
26 | } |
27 | } |