PHP open_basedir - 返回值?

发布于 2024-08-30 14:42:37 字数 73 浏览 5 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一杆小烟枪 2024-09-06 14:42:37

open_basedir< /strong> 是在 php.ini 中配置的设置,

因此,您可以使用 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

然后,以下代码部分:

var_dump(ini_get('open_basedir'));

获取此输出:

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

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)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文