Set php tutorial.ini script timeout method
There are two settings
Method one, set
max_execution_time = 1800 ;
Currently the above method can use ini_set("option", "value"),
ini_set(''max_execution_time'', ''180'');
Method 2: Use php page to add
set_time_limit(),
If you add set_time_limit(100) at the beginning of the php document, it means a timeout of 100 seconds.