PHP - 无法打开流:已达到重定向限制
PHP - failed to open stream : redirection limit reached
我的代码在这里
<?php echo (file_get_contents("http://123.com/video/latest.php")); ?>
这是错误如何解决
Warning: file_get_contents(http://123.com/video/latest.php): failed to open stream: Redirection limit reached, aborting in /home/123/public_html/index.php on line 340
谢谢。
尝试使用此代码,它不会自动跟随重定向:
$context = stream_context_create(
array(
'http' => array(
'follow_location' => false
)
)
);
$html = file_get_contents('YOUR_URL', false, $context);
另一个问题是 URL 您试图从 returns 获取内容时出现 404 错误。
我的代码在这里
<?php echo (file_get_contents("http://123.com/video/latest.php")); ?>
这是错误如何解决
Warning: file_get_contents(http://123.com/video/latest.php): failed to open stream: Redirection limit reached, aborting in /home/123/public_html/index.php on line 340
谢谢。
尝试使用此代码,它不会自动跟随重定向:
$context = stream_context_create(
array(
'http' => array(
'follow_location' => false
)
)
);
$html = file_get_contents('YOUR_URL', false, $context);
另一个问题是 URL 您试图从 returns 获取内容时出现 404 错误。