gpt4 book ai didi

php - Ping站点并以PHP返回结果

转载 作者:IT王子 更新时间:2023-10-29 01:23:24 26 4
gpt4 key购买 nike

我想创建一个小的 IF 过程来检查 Twitter 是否可用(例如,与现在不同),并返回 true 或 false。

帮助:)

最佳答案

function urlExists($url=NULL)  
{
if($url == NULL) return false;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

return $httpcode >= 200 && $httpcode < 300;
}

这是从 this post 抓取的关于如何检查 URL 是否存在。因为 Twitter 在维护时应该提供 300 以上的错误消息,或者 404,所以这应该可以正常工作。

关于php - Ping站点并以PHP返回结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1239068/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com