昨天有些网页返回了此错误: 错误500:file_get_contents():php_network_getaddresses:getaddrinfo failed:名称或服务未知 我试图搜索与Yii框架有关的这个问题,但我没有找到解决这个问题的方法。
答案 0 :(得分:1)
尝试检查这样的网址:
$ch = curl_init($url); //<=== YOUR URL
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$retcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
// if $retcode >= 400 -> not found else if $retcode = 200, found.
curl_close($ch);