php command get ini params

Solutions on MaxInterview for php command get ini params by the best coders in the world

showing results for - "php command get ini params"
Giada
20 Nov 2019
1php -r "echo ini_get('my_value');"
2
Soukaina
16 May 2018
1php -i | grep 'my_value'
2
Bianca
23 Apr 2020
1grep 'my_value' /path/to/php.ini
2