php open_basedir的使用与性能分析
使用方法
/*限制打开的目录*/
ini_set('open_basedir', __DIR__.'/');
如果 打开不是这个目录 就会报错
failed to open stream: Operation not permitted in F:/phpStudy/WWW/mircoweb/mircoweb/wwwroot/Public/opendirtest.php on line 8
经过测试 open_basedir使用后 会影响I/O性能导致系统执行变慢 所以能不用就不要用了。。。
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/19092.html