使用file_get_contents作为自定义SOAP实现的一部分来应用SOAP调用(我们尝试的所有库都不会正确地使用SOAP 1.2进行基于SSL +证书的身份验证)。然而,困难且几乎没有文档记录的API通常返回500.响应正文中有错误详细信息,但file_get_contents似乎不允许访问它。 fopen似乎有同样的问题。
怎么办?
由于大量使用流上下文来使身份验证正常工作,因此不希望转到cURL。
答案 0 :(得分:50)
您可以考虑nusoap。
但是,对于您的问题,如果您使用ignore_errors
,则会有效。
$context = stream_context_create(array(
'http' => array(
'ignore_errors' => true
)
));
$contents = file_get_contents($url, false, $context);