我在这里有一个 PHP 函数:
function TryGetJSON($URL) { //Attempts to retrieve the JSON at a URL, script terminates if failure
function LogAndDie($msg) { error_log($msg); die(); }
for($attempt = 0; $attempt < 3; $attempt++) { //Try 3 times to fetch URL
$JSON = file_get_contents($URL); //Attempt to fetch, then check Response Header
if( !$JSON && isset($http_response_header) && strstr($http_response_header[0], '503'))
continue; //503 response: server was busy, so try again
else
break; //$JSON is populated, must be a 200 response
}//$JSON is always false on 404, file_get_contents always returns false on read failure
if(isset($http_response_header)) {
if(strstr($http_response_header[0], '503')) //If still 503, then all our attempts failed
LogAndDie('Could not get JSON file (' . $URL . '): ' . $http_response_header[0] . ' after 3 attempts.');
if(!strstr($http_response_header[0], '200')) //If not a 200
LogAndDie('Could not get JSON file (' . $URL . '): ' . $http_response_header[0]);
if(!strstr($http_response_header[7], 'application/json') ) //Check Correct Content-Type
LogAndDie('Wrong Content Type for (' . $URL . '). Received: ' . $http_response_header[7]);
return $JSON;
}
if(!$JSON) LogAndDie('Could not get JSON file (' . $URL . ').'); //Catch all
}
该函数的要点是,如果它无法从指定的 URL 检索 JSON,它会die()
写入并写入。在'serror_log
的情况下它会重新尝试 3 次。503
我对此有几个主要问题:
Content-Type
检查并不总是正确的,因为 GET 请求上的索引并不总是 7 。我是否想$http_response_header
用strstr
for遍历整个Content-Type
内容然后检查它?对我来说似乎很笨拙。手册页对此几乎没有任何内容。必须有一种更简单的方法来处理它?我
error_log
在 a 上有这样的行404
:
[25-Oct-2012 09:02:23] PHP Warning: file_get_contents(...) [<a href='function.file-get-contents'>function.file-get-contents</a>]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in ... on line 8
[25-Oct-2012 09:02:23] Could not get JSON file (...): HTTP/1.1 404 Not Found
我只对保留我的(第二行)感兴趣,而不是error_log
两者都填满。我发现@
可以用来抑制它file_get_contents
,但这可能会抑制我可能需要知道的其他我无法预测的警告。有没有办法在这个函数中抑制特定的警告?