Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是可以编码可以自动调用X类函数的PHP脚本。
例如我有一个类,带有一个函数LoadAuto RSS(),这个最新的加载信息来自CNN 网站的一个RSS 提要,我想每隔5 分钟函数会applelée automatiquement.yat 有解决方案吗?
先感谢您
你到底想达到什么目的?如果您想定期运行更新数据库中的值、移动服务器上的文件或类似内容的服务器端功能,您需要查看Cron 作业。
另一方面,如果您想以固定的时间间隔向已将您的网站加载到其浏览器中的用户显示新内容,那么您正在寻找基于AJAX的解决方案。
/run_me.php每 5 分钟调用一次的示例 cron-job :
/run_me.php
*/5 * * * * /usr/bin/wget -q -O /dev/null http://localhost/run_me.php