Last Updated: February 25, 2016
·
29.4K
· benjaminpaap

Increasing PHP CLI memory limit

To increase the memory limit for PHP CLI just use the -d option:

php -d memory_limit=512M script.php

With the -d option you can override any php.ini setting.