我的服务器似乎在哪里出现问题。我收到了这个错误。
failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request
这是我已经实施了一年多的代码,并且已确认在单独的登台服务器上工作。
$url = 'http://graph.facebook.com/10150624051911279/photos/all';
$response = json_decode(file_get_contents($url, true));
foreach ($response->data as $photo) {
echo '<li><a href="' . $photo->link . '" ><img class="img" src="timthumb.php?src=' . $photo->source . '&h=175&w=175" /></a></li>';
}
我的服务器上可能出现的问题可能会导致此问题。我难住了。