php教程

PHP超级Ping网站接口源码

我的站长站 2020-08-18 人阅读

PHP超级Ping网站接口源码是一个用于检测网站响应速度和连通性的php代码,它可以帮助用户快速了解其网站的运行状态。

<?php
$url = $_GET['url'];
$result = file_get_contents("https://ping.tx7.co/ping.php?host=".$url);
header("Content-Type:text/html;charset=UTF-8");
print_r($result);
if ($arr['code']==1) {
}
?>


php教程标签