使用
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()检查可读性,但是,我仍然收到警告.
您可以使用
原文链接:https://www.f2er.com/php/137205.htmlini_get()
function读取PHP指令的值:
ini_get('open_basedir')
如果指令不为空,则它应包含由PATH_SEPARATOR分隔的a string with one ore more paths.