Answers for "php memory_limit=-1"

PHP
1

php memory_limit cli

php -d memory_limit=-1
Posted by: Guest on March-03-2020
6

php memory_limit unlimited

//Unlimited momory limit
ini_set('memory_limit', '-1');

//Fixed memory limit
ini_set('memory_limit','2048M');
Posted by: Guest on November-30-2020
3

memory limit php ini_set

ini_set("memory_limit","256M");
Posted by: Guest on March-20-2020
0

Increase the PHP memory limit

/*
To increase the PHP memory limit setting, edit your PHP.ini file found under /usr/local/etc/php/7.4/.
Increase the default value (example: Maximum amount of memory a script may consume = 128MB) of the PHP memory limit line in php.ini.
*/

memory_limit = 256M
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language