PHP open_basedir - 返回值?
我想在 php 脚本中返回 open_basedir 的值..我该怎么做? 如果值是空白,它应该回显空白..
谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
open_basedir
< /strong> 是在php.ini
中配置的设置,因此,您可以使用
ini_get
:For example, if `open_basedir` is defined this way in my `php.ini` file :
然后,以下代码部分:
获取此输出:
open_basedir
is a setting that's configured inphp.ini
So, you can get its current value with
ini_get
:For example, if `open_basedir` is defined this way in my `php.ini` file :
Then, the following portion of code :
Gets me this output :