How to find out memory_limit for the command-line interface (CLI) in PHP
It can be found out by running the command php with option -i.
Commands:
php -i | grep 'memory_limit'
Output:
memory_limit => 128M => 128M
It can be found out by running the command php with option -i.
Commands:
php -i | grep 'memory_limit'
Output:
memory_limit => 128M => 128M
Log in or create a user account to post a comment.