PHP跳过脚本如果没有在5秒内执行

时间:2017-06-08 22:29:44

标签: php

我的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");

下一个脚本就在这里

0 个答案:

没有答案