>我有一个脚本
$data = file_get_contents('http://my_example_link/data.xml');
如果 http://my_example_link/data.xml 显示错误
无法打开流:HTTP 请求失败!HTTP/1.1 404 未找到
如果链接在上面显示错误,我想创建条件,我将使用引导面板显示警报通知。
我可以这样做吗?
你可以用 curl 来做,请参考curl_getinfo
<?php
// Create a cURL handle
$ch = curl_init('http://www.example.com/');
// Execute
curl_exec($ch);
// Check HTTP status code
if (!curl_errno($ch)) {
switch ($http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE)) {
case 200: # OK
break;
default:
echo 'Unexpected HTTP code: ', $http_code, "n";
}
}
// Close handle
curl_close($ch);
?>