Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何使用 PHP 以编程方式检查有效(非死)链接?
我正在创建一个包含许多外部网站链接的网站,这些网站可能会关闭。
是否可以不时进行压力测试之类的事情,看看它们是否“仍然存在”?
这可能会
function checkLink($link){ flush(); $fp = @fopen($link, "r"); @fclose($fp); if (!$fp){ return "link is not active"; }else{ return "link is active"; } }