84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
做项目需要让某个PHP文件每分钟执行一次处理数据,而且用的LNMP没有办法直接通过127.0.0.1访问以前也没接触过Cron网上搜了一下现在计划有几种解决办法.
模拟客户端每分钟向域/路径发一次请求。
不借助框架自己实现数据的读取解析封装入库。
不知道各位有没有什么好的办法? 框架用的是CI
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
用linux的crontab啊
crontab
##调用PHP文件写法 */10 * * * * /usr/local/webserver/php/bin/php /www/project/test.com/price.php ##sh写法 */10 * * * * sh /www/project/test.com/price.sh ##laravel框架写法 * * * * * /usr/local/php/bin/php /home/project/service.com/artisan schedule:run ##ThinkPHP框架写法 */1 * * * * /usr/local/webserver/php/bin/php /www/home/project/dc/cli.php CancelOrder/cancel
用linux的
crontab
啊