PHP open_basedir - to return value?

Adrian M. picture Adrian M. · May 1, 2010 · Viewed 8.2k times · Source

I want to return the value of open_basedir in a php script.. how can I do it? If value is blank it should echo that is blank..

Thanks!

Answer

Pascal MARTIN picture Pascal MARTIN · May 1, 2010

open_basedir is a setting that's configured in php.ini

So, you can get its current value with ini_get :

echo ini_get('open_basedir');


For example, if open_basedir is defined this way in my php.ini file :

open_basedir = /data/www:/var/www:/home/squale/developpement/tests

Then, the following portion of code :

var_dump(ini_get('open_basedir'));

Gets me this output :

string '/data/www:/var/www:/home/squale/developpement/tests' (length=51)