Home > Backend Development > PHP Tutorial > php第三方定时触发脚本有哪些方案

php第三方定时触发脚本有哪些方案

WBOY
Release: 2016-06-06 20:19:14
Original
1160 people have browsed it

php第三方定时触发脚本有哪些方案

回复内容:

php第三方定时触发脚本有哪些方案

常规的就是 crontab

第三方你可以使用新浪SAE的cron功能来实现访问你指定的URL
文档:http://www.sinacloud.com/doc/sae/php/cron.html#cron

具体为在config.yaml文件中,增加Cron段,例如:

<code>cron:
- description: cron_test
  url: index.php
  schedule: "*/5 * * * *"</code>
Copy after login

再到index.php文件中一行file_get_contents($url)就可以实现第三方的CRON功能了

基于crontab再做二次开发,然后在网站上管理任务,这样可以避免不具备服务器权限的团队成员无法使用的问题

我不知道swoole算不算第三方,因为严格意义上讲,swoole不算是php程序,而是C程序

我记得以前回答过来着

无非也就那么几种方法,都要定时触发,实现的方式不同、语言不同

地址:PHP 有什么工具能做定时任务

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template