Home >Backend Development >PHP Tutorial >php script configuration
*Set script running memory*
Sometimes when using PHP scripts to run data, a large amount of memory needs to be consumed. The default memory of 16M is not enough. In this case, you need to change the memory settings
ini_set("memory_limit","1G");
The above introduces the PHP script configuration, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.