php command get ini params 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
Example 3: php command get ini params
php -i | grep 'my_value'