使用 PHPass ( http://www.openwall.com/phpass/ )时,我收到以下警告:
open_basedir restriction in effect. File(/dev/urandom) is not within the allowed path(s)
虽然这不是一个大问题(它会依赖于其他东西),但我不想有这个警告。PHP 应用程序应该在不同的服务器上运行,一些用户将能够将该路径添加到他们允许的 open_basedir 路径中,但其他用户将无权访问该配置。
我的第一个猜测是检查可读性is_readable()
,但是,我仍然收到警告。
问题:如何检查某个路径或文件是否已添加到 open_basedir 路径?