// Reporting E_NOTICE can be good too (to report uninitialized // variables or catch variable name misspellings ...) error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
// Report all errors except E_NOTICE error_reporting(E_ALL & ~E_NOTICE);
// Report all PHP errors (see changelog) error_reporting(E_ALL);
// Report all PHP errors error_reporting(-1);
// Same as error_reporting(E_ALL); ini_set('error_reporting', E_ALL);
?>
System.php
<?php
// debug默认开启 defined('SF_DEBUG') or define('SF_DEBUG', true); // 框架开始运行时间 defined('SF_START_TIME') or define('SF_START_TIME', microtime(true)); // 核心文件目录 defined('SF_LIBRARY_PATH') or define('SF_LIBRARY_PATH', __DIR__.DIRECTORY_SEPARATOR); // 应用目录 defined('SF_APP_PATH') or define('SF_APP_PATH', __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR); // 入口目录 defined('SF_PUBLIC_PATH') or define('SF_PUBLIC_PATH', __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'public'.DIRECTORY_SEPARATOR);