====== c_system_debug里函数,提供Debug管理功能 ======       ==== Debug_PrintGlobals() ==== === 说明 === 显示全局变量.(下版转到debug页,虽然还没有做,但加了todo检查会报错) === 参数与返回值 === return (mixed) /** * 显示全局变量.(下版转到debug页,虽然还没有做,但加了todo检查会报错) * * @return mixed * */ } function Debug_PrintGlobals()     ==== Debug_PrintIncludefiles() ==== === 说明 === 打印全局Include文件.(下版转到debug页,虽然还没有做,但加了todo检查会报错) === 参数与返回值 === return (string) /** * 打印全局Include文件.(下版转到debug页,虽然还没有做,但加了todo检查会报错) * * @return string * */ } function Debug_PrintIncludefiles()     ==== Debug_PrintConstants() ==== === 说明 === 打印全局自定义常量.(下版转到debug页,虽然还没有做,但加了todo检查会报错) === 参数与返回值 === return (string) /** * 打印全局自定义常量.(下版转到debug页,虽然还没有做,但加了todo检查会报错) * * @return string * */ } function Debug_PrintConstants()     ==== Debug_IgnoreError() ==== === 说明 === Return true if a error can be ignored. === 参数与返回值 === param (integer) $errno: return (boolean) /** * Return true if a error can be ignored. * * @param integer $errno * @return boolean * */ } function Debug_IgnoreError($errno)     ==== Debug_Error_Handler() ==== === 说明 === 错误调度提示. === 参数与返回值 === param (integer) $errno: 错误级别 param (string) $errstr: 错误信息 param (string) $errfile: 错误文件名 param (integer) $errline: 错误行 return (boolean) /** * 错误调度提示. * * @param integer $errno * @param string $errstr * @param string $errfile * @param integer $errline * @return boolean * */ } function Debug_Error_Handler($errno,$errstr,$errfile,$errline)     ==== Debug_Exception_Handler() ==== === 说明 === 异常处理. === 参数与返回值 === param (\Exception) $exception: 异常事件 return (boolean) /** * 异常处理. * * @param \Exception $exception * @return boolean * */ } function Debug_Exception_Handler($exception)     ==== Debug_Shutdown_Handler() ==== === 说明 === 当机错误处理. === 参数与返回值 === return (boolean) /** * 当机错误处理. * * @return boolean * */ } function Debug_Shutdown_Handler()     ==== Debug_DoNothing() ==== === 说明 === Debug DoNothing === 参数与返回值 === /** * Debug DoNothing * * */ } function Debug_DoNothing()