.htaccess setting error
I understand I can set error_display within .htaccess file using predefined constants: http://php.net/manual/en/errorfunc.constants.php
I am looking for a number that would let me set the error_display to all but disable strict mode, warnings and notices
I guess the equivalent of E_ALL | ~E_WARNINGS | ~E_NOTICES | ~E_STRICT ?
根据PHP常量,这相当于:32767&〜2&〜8&〜2048这是30709(根据我的Windows程序员的计算器)
# in your .htaccess file...
php_value error_reporting 30709
链接地址: http://www.djcxy.com/p/10106.html
下一篇: .htaccess设置错误