I want to return the value of open_basedir in a php script.. how can I d开发者_运维知识库o it? If value is blank it should echo that is blank..
Thanks!
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)
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论