PHP- cannot change max_execution_time in xampp

前端 未结 11 949
再見小時候
再見小時候 2021-01-18 00:42

I\'ve tried everything to change the max_execution_time of a php crawler script so that it can run an infinite amount of time.

I have changed the php.in

11条回答
  •  庸人自扰
    2021-01-18 01:18

    You could also try setting ignore_user_abort(TRUE); in your script as it might be the browser timing out rather than the script.

    From the php.net manual

    See here for more info

    http://www.php.net/manual/en/function.ignore-user-abort.php

提交回复
热议问题