dqsvnsad79721 2012-09-25 08:33
浏览 25
已采纳

wamp上有几个长时间运行的php脚本[关闭]

Is there a reason why I can't run two or more scripts in parallel in a local host environment? They just simply stop without any error message.

  • 写回答

2条回答 默认 最新

  • douzhuo5671 2012-09-25 08:51
    关注

    tcp connections have connection timeouts. after some idle time without data on the wire the connection closes and thus the script stops.

    php has time_limits additionaly to prevent high cpu usage. but this limit is not directly related to actual seconds but to uses cpu cycles.

    for long running scripts its better to run the from command line instead of the browser.

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

报告相同问题?