PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

从 PHP 3 移植到 PHP 4> <从 PHP 4 移植到 PHP 5
Last updated: Sun, 25 Nov 2007

view this page in

错误报告

自 PHP 5 起引进了新常量 E_STRICT,其值为 2048。它提供了对用户代码的协同性和向前兼容性的运行时 PHP 建议,有助于使用户保持最新和最好的编程风格。例如在使用已过时的函数时 STRICT 信息会提出警告。

Note: E_ALL 不包括 E_STRICT,因此其默认未激活。



add a note add a note User Contributed Notes
错误报告
Anonymous
31-Mar-2008 06:52
To enable full error reporting (recommended for development boxes) use:

use error_reporting(E_ALL | E_STRICT);

or in php.ini:

error_reporting  =  E_ALL | E_STRICT

从 PHP 3 移植到 PHP 4> <从 PHP 4 移植到 PHP 5
Last updated: Sun, 25 Nov 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites