a.sh
#!/bin/bash
cd /opt/park/crontab;
php ./park_center.php
park_center.php中的大致内容如下:
<?php
$redis = new Redis();
$redis->connect("127.0.0.1","7380");
......
if($httpcode>=200 && $httpcode<300){
file_put_contents("/tmp/toke.log",date("Y-m-d h:i:sa")." success ".$ret."\n", FILE_APPEND);
}else{
file_put_contents("/tmp/toke.log",date("Y-m-d h:i:sa")." error\n", FILE_APPEND);
}
?>
然后使用Linux crontab每隔2小时,或者其它条件执行a.sh的SHELL文件即可