使用 Shell 脚本管理执行 PHP 的定时任务
shell 脚本如下
cro_file=$dir_or_file"/crontab_php"
#文件是否存在
if [ -f $cro_file ]
then
# 这里实际操作不是cat
cat $cro_file
else
echo "$cro_file not found."
fi
crontab_php 内容格式(使用Tp5 框架结构)
# 这里有个疑问,就是是否所有定时任务都得另外写入口?不需要登录验证
# 因为有些定时任务是写在后台的,前台没有入口
application\index\index\index.php
实际执行命令
php application\\index\\index\\index.php
#这里应该是执行不了的,因为没有从框架入口进来
#怎么才能直接执行?
慕后森
喵喵时光机