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.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报