php – 检查open_basedir限制是否生效

前端之家收集整理的这篇文章主要介绍了php – 检查open_basedir限制是否生效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用 PHPass( http://www.openwall.com/phpass/)时收到以下警告:
open_basedir restriction in effect. File(/dev/urandom) is not within the allowed path(s)

虽然这不是一个大问题(它会落后于其他东西),但我不想发出这个警告. 程序应该在不同的服务器上运行,一些用户可以将该路径添加到其允许的open_basedir路径,但其他用户将无法访问该配置.

我的第一个猜测是用is_readable()检查可读性,但是,我仍然收到警告.

问题:如何检查某个路径或文件是否已添加到open_basedir路径?

您可以使用 ini_get() function读取PHP指令的值:
ini_get('open_basedir')

如果指令不为空,则它应包含由PATH_SEPARATOR分隔的a string with one ore more paths.

原文链接:https://www.f2er.com/php/137205.html

猜你在找的PHP相关文章