On Wed, 2008-06-11 at 23:48 +0200, Rene Fournier wrote: > Is it possible to set a unique memory limit for PHP scripts that are > run from the command line? (That is, different from what's specified > in php.ini.)
In your script:
ini_set( 'memory_limit', -1 );
Cheers,
Rob.
--
http://www.interjinn.com
Application and Templating Framework for PHP
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

