当我尝试使用file_get_contents时,我收到以下错误消息: (网址已更改)。
Warning: file_get_contents(http://user:password@1.1.1.1/test/test.xml?cmd=show&user=*) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 401 Unauthorized in /srv/www/htdocs/phonebook.php on line 50
如果我调用URL,我可以在浏览器中看到XML-File。它之间没有空格。但是,我没有得到它。为什么它不起作用。 PHP版本是5.3.17。我应该使用cUrl吗?
语法为:
$xml_echo = "http://".$user.":".$pass."@".$ip .$url;
echo $xml_echo;
$xml_string = file_get_contents($xml_echo);
我得到的其他问题,可能与描述的问题有关,当我尝试使用时出现错误:
$xml = new SimpleXMLElement(utf8_encode($xml_string));
我也尝试过使用:simplexml_load_string
Fatal error: Uncaught exception 'Exception' with message 'String could not be parsed as XML' in /srv/www/htdocs/phonebook.php:55 Stack trace: #0 /srv/www/htdocs/phonebook.php(55): SimpleXMLElement->__construct('') #1 {main} thrown in /srv/www/htdocs/get_pbx_phonebook.php on line 55
答案 0 :(得分:0)
哦,发布之后。我试着用
的https://
而不是
的http://
现在它奏效了。
所以,没有必要帮助。