php ini_set expose_php

php

Solution

http://php.net/manual/en/ini.core.php

It can only be set in php.ini.

Problem

I am trying to get expose_php to off with ini_set, except it seems to not be working. I tried the value 0, and Off, but neither work. ``` ini_set('expose_php',0); ``` help?

Original source