PHP:file_get_contents无法打开流:连接被拒绝
作者:互联网
我正在尝试使用file_get_contents
和simple_load_xml访问第二台服务器,我得到了
“无法打开流:连接被拒绝”
结果如何?
allow_url_fopen=Yes
allow_url_include=Off
是我的php.ini值
解决方法:
听起来好像第二台服务器正在拒绝文件,请尝试使用curl来获取文件;使用curl的好处是,在发生此类故障时,它将为您提供有用的调试信息. get_file_content()掩盖了许多有用的信息.
标签:file-get-contents,php,http 来源: https://codeday.me/bug/20191012/1899612.html