我的php脚本有问题,有时需要很长时间才能执行。 我正在寻找一种破解脚本的方法(跳过它),如果它需要超过5秒并继续执行下一个命令。
$browser = $_SERVER['HTTP_USER_AGENT'];
$ip = $_SERVER['REMOTE_ADDR']; // the IP address to query
$query = @unserialize(file_get_contents('http://ip-api.com/php/'.$ip));
$loc = $query['isp'].' | '.$query['country'].' | '.$query['city'].' | '.$browser;
$first = strtok($loc, ')').")";
if($query && $query['status'] == 'success') {
$loco = $first;
} else {
$loco = ' ---- ';
}
$file = "cfriplog.txt";
$txtfile = fopen($file, "a");
$line = $ip . " | " . date("d.m.Y | H:i:s", strtotime("$time"))." | ".$loco." | ".$page;
fwrite($txtfile, $line . "\n");
下一个脚本就在这里