我试图提取Soap响应的HTTP状态代码。 例如,我有:
$client = new SoapClient($wsdl);
$client->__setSoapHeaders(
new SoapHeader(
$nameSpace,
'Security',
$secHeaderValue,
true
)
);
// The actual call
$response = $client->Complete($paramswebservice)
所以现在我以这种方式获得响应标头:
$responseHeaders = $client->__getLastResponseHeaders();
var_dump($responseHeaders);
这是vardump的结果:以这种方式格式化的字符串(网页浏览器 - 页面源代码)
我正在做什么来提取http状态代码' 200' :
/**
* Returns the HTTP Status code of $response
* @param string $response
* @return string
*/
function extract_response_http_code($response) {
$tmp = explode('\n', $response);
$array = explode(' ', $tmp[0]);
return $array[1];
}
我真的不喜欢这个解决方案。我想要一个更强大/一致的。有什么建议吗?
编辑1
如评论中所述:
HTTP/1.1 200 OK Cache-Control: private, max-age=0 Content-Length: 1315 Content-Type: text/xml; charset=utf-8 Server: Microsoft-IIS/8.5 X-Powered-By: ASP.NET Date: Thu, 30 Mar 2017 08:52:15 GMT
答案 0 :(得分:4)
<?php
$result="HTTP/1.1 200 OK
Cache-Control: private, max-age=0
Content-Length: 1315
Content-Type: text/xml; charset=utf-8
Server: Microsoft-IIS/8.5
X-Powered-By: ASP.NET
Date: Thu, 30 Mar 2017 08:52:15 GMT";
preg_match("/HTTP\/\d\.\d\s*\K[\d]+/", $result,$matches);
print_r($matches);
<强>输出:强>
Array
(
[0] => 200
)