check php ini variable by using command code example
Example 1: php command get ini params
php -r "echo ini_get('my_value');"
Example 2: php command get ini params
php -i | grep 'my_value'
php -r "echo ini_get('my_value');"
php -i | grep 'my_value'