我有一个 php 文件要作为 cronjob 执行,这个 php 文件包含一些 javascript.
I have php file that is to be executed as cronjob, this php file contains some javascript.
我将解释流程:
这可以通过 CRON JOBS 实现吗?或者是否有任何方法可以安排 javascript 定期运行,例如 php 的 cron?
更新:我可以使用 PHP curl 管理对 API 的 javascript 调用,并且 cron 作业正在完美执行.但我认为这不是这个问题的正确解决方案,可能是 Node.Js 是解决方案(我还没有测试过).
Can this be implemented Via CRON JOBS ?
OR
Is there any method to schedule javascript to run periodically, like cron for php?
UPDATE: i could manage the javascript call to API with PHP curl ,And the cron Job is getting executed perfectly. But i dont think it is the correct solution to this question may be Node.Js is the solution(i didnt test it yet).
您不能在 Cronjobs 中运行 Javascript,因为 Javascript 是由浏览器运行的.我认为你应该看看 php 中的 curl 来调用 api.
You can't run Javascript in Cronjobs because Javascript is ran by browsers. I think you should take a look at curl in php to call an api instead.
http://www.php.net/manual/en/book.curl.php
这篇关于CronJobs 可以执行包含 Javascript 的 php 吗?如果没有,还有其他选择吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!