php command line get ini variables code example
Example 1: php command get ini params
php -r "echo ini_get('my_value');"
Example 2: php command get ini params
grep 'my_value' /path/to/php.ini
php -r "echo ini_get('my_value');"
grep 'my_value' /path/to/php.ini