yesterday some pages have returned this error: Error 500: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known I tried to search this problem in relation with Yii framework but I did not found no solutions to this issue.
1条回答 默认 最新
- duanhua9398 2014-04-17 09:44关注
try checking the URLs like this :
$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);
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报