1、shell.php
#!/usr/local/php/bin/php
<?php
$time=time();
$filename="./log/".$time.".txt";
file_put_contents($filename,$time);
2、crontab -e 进入编辑模式,在结尾处添加下面代码
*/1 * * * * cd /home/wwwroot/default/activity && ./shell.php
1、shell.php
#!/usr/local/php/bin/php
<?php
$time=time();
$filename="./log/".$time.".txt";
file_put_contents($filename,$time);
2、crontab -e 进入编辑模式,在结尾处添加下面代码
*/1 * * * * cd /home/wwwroot/default/activity && ./shell.php