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.
我正在开发每分钟运行 php 脚本的网站,而无需直接访问该页面。几乎有人说我必须使用 cron job;但是我的域没有像其他域一样的功能 cron 工作。所以我想知道的是我们可以使用除cron作业之外的其他方法吗?例如,htaccess。有可能吗?
预先感谢。
恐怕 .htaccess 文件只是帮助控制 Apache 对您网站的配置。您无法使用它启动作业。使用 cron 是做你想做的事的最好方法。如果您无权访问 cron 作业,您可以拥有一个网页,通过使用 like 执行 shell 命令exec()或passthru()管理计时器来控制该后台工作人员。这风险更大,因为脚本中的任何错误都可能引发问题离开。您必须完全手动管理该后台工作人员的生命周期。
exec()
passthru()
也许还有其他脚本可以执行您想要的操作,但忘记 .htaccess 文件。