0

昨天有些页面返回了这个错误: 错误 500: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known 我试图搜索这个与 Yii 框架相关的问题,但我没有找到解决这个问题的方法。

4

1 回答 1

1

尝试检查这样的 URL:

$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);
于 2014-04-17T09:44:26.453 回答