PHP Configurations

 PHP Configurations

Sometimes we need to allow the php script to run for maximum time.

Here we have some useful settings but it is not recommended to use on the production server. 

ini_set("max_execution_time",0); 

    It will allow max time of script execution.

ini_set("max_input_time",-1);

    It will allow max input time.

ini_set("memory_limit",-1);
    
    It will allow max memory limit.


Post a Comment

0 Comments