PHP- cannot change max_execution_time in xampp

前端 未结 11 989
再見小時候
再見小時候 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:09

    what you are doing is just setting the max_execution_time to whatever inside your page. you can't change this using ini_set. you can change the memory_limit only.

    see more details here... from the php official site.

    if you want them to be changed, change in php.ini.

提交回复
热议问题