dongnanman9093 2012-10-26 20:29
浏览 39
已采纳

有可能使用ajax,jquery页面与cron?

what my page do is:

  1. download an array from different server (first.php)
  2. php script parse values
  3. parsed values are sent with ajax call
  4. on the next (ajax called) page (second.php) there are some mysql queries
  5. if values pass condition, values are written to database

.... So, when I run my first.php.. it loads second.php, everything's fine.. but what I want to know if it is possible to let it make by cron?

If not, what should I do? Thanks.

  • 写回答

3条回答 默认 最新

  • dousi7579 2012-10-26 20:36
    关注

    There are certain things you need to understand in this regard.

    The first is that PHP can be run as either a web server module or as a standalone executable. When you run it as a web server module, you open it from the browser, all related web technologies (html/css/js) etc get parsed and work in unison.

    When you run it from command line using cron like say /usr/bin/php mywebpage.php then the php executable DOES NOT parse/understand the other web technologies and so your page will fail.

    There are two workarounds for this:

    1. Rewrite only those web-enabled parts so that the ajax/js stuff gets handled by PHP. Basically rule of the thumb is that if you are running a CLI php script, it should contain ONLY core PHP. This is the preferred way. You will need to move the ajax calls to inside the same file and just make it a single execution flow like any regular program.

    2. If for some reason you cannot do the above, you can try something like this: /path/to/browser http://mysite/mywebpage.php. Here what you are doing is, you are running a browser executable and then calling the webpage URL. This way the page is being executed within the browser's environment and it will be able to parse and understand the ajax/js calls.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥30 自适应 LMS 算法实现 FIR 最佳维纳滤波器matlab方案
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥15 Python3.5 相关代码写作
  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动