我正在运行这个 PHP 脚本来获取 396 个 Facebook 用户的个人资料图片。循环在 43 个结果后不起作用。可能出了什么问题?请指导。谢谢。
<html>
<head>
</head>
<body>
<?php
error_reporting (0 );
for ($i = 4; $i <= 400; $i++)
{
$to_send = "http://graph.facebook.com/";
$to_send_new = $to_send.$i;
$content = file_get_contents($to_send_new);
$parsed = json_decode($content);
$link = $parsed->link;
$link = str_replace("http://www.facebook.com","https://graph.facebook.com",$link);
$link .="/picture?width=6000&height=6000";
?>
<img src=' <?php echo $link ?>' >
<br>
<?php
}
?>
</body>
</html>