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.
是否有可能将 fsockopen 的结果显示为 5 分钟?这是我需要的,因为网站加载缓慢,我使用 fsockopen 从 0.00001s 页面加载到 1.00137s 页面加载时间(这是服务器没有响应的时候。
代码:
<?php $fp = @fsockopen('127.0.0.1', '666'); if ($fp) { echo 'online'; }else{ echo 'offline'; }?>