知道答案的人的简单问题......
$xml = simplexml_load_file("http://url/path/file.xml");
此网址受.htaccess
保护,如何将登录名/密码作为参数传递给该功能?
答案 0 :(得分:8)
$xml = simplexml_load_file("http://username:password@url/path/file.xml");
试试:)
答案 1 :(得分:1)
file_get_contents
或curl将允许您使用http://username:password@url/path/file.xml
设置用户身份验证。
获取字符串数据并传递到simplexml_load_string
。
答案 2 :(得分:1)
使用这些值的示例.htaccess设置将是:
php_value allow_url_fopen 1
php_value allow_url_include 1