我的代码在这里
http://123.com/video/latest.php“));?>
这是错误如何解决这个问题 警告:file_get_contents(http://123.com/video/latest.php):无法打开流:达到重定向限制,在第340行的/home/123/public_html/index.php中止
谢谢
答案 0 :(得分:0)
尝试使用此代码,该代码不会自动遵循重定向:
$context = stream_context_create(
array(
'http' => array(
'follow_location' => false
)
)
);
$html = file_get_contents('YOUR_URL', false, $context);
另一个问题是,您尝试获取内容的网址会返回404错误。