php.ini的一些设置

1、设置PHP安全模式
safe_mode_include_dir=D:/usr/www/include

2、设置脚本访问目录
open_basedir=D:/usr/www

3、设置禁用函数
disable_functions=system,passthru,exec,shell_exec,popen,phpinfo

4、设置全局变量
php中使用post或者get提交的变量系统都自动注册为全局变量,为了安全,把注册全局变量选项关闭
register_globals=off

5、设置magic_quotes_gpc
打开此选项防止php注入
magic_quotes_gpc=on

6、设置报错信息
display_errors=on
error_reporting=E_WARNING&E_ERROR

7、设置session路径
session.save_path="D:/"


你可能感兴趣的:(php.ini)