When running a PHP script from command line interface (CLI), a higher memory limit may be required in order for the script to be successfully executed. This can be achieved using the “-d” or “–define” option in the command. According to the manual:
This option allows you to set a custom value for any of the configuration directives allowed in php.ini.
An example of running a PHP script in CLI with custom memory limit:
php -d memory_limit=128M my_script.php
Of course the “-d” or “–define” option is not limited to the memory limit directive; it can be use to alter other php.ini directives as well.


Life Saver!!!!
I wish more people had a knack for writing things in a few short and sweet sentences.
Pingback: Yii and PHP:: Executed command line and memory limit « Kongsi-Kongsi
Thanks, was getting a headache already