本文整理汇总了PHP中TPL::renderScreenOfDeath方法的典型用法代码示例。如果您正苦于以下问题:PHP TPL::renderScreenOfDeath方法的具体用法?PHP TPL::renderScreenOfDeath怎么用?PHP TPL::renderScreenOfDeath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TPL
的用法示例。
在下文中一共展示了TPL::renderScreenOfDeath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: renderSQLScreenOfDeath
/**
* Will output an error screen, same as the one rendered by the error handler, with some defaults. This method, named as so is
* used if an 'mysql'_error () happens so that we can output a specific SQL error, including the SQL error string, the query string
* and the resulting error message;
*
* @return void Will not return a thing, but echo an error screen
* @author Catalin Z. Alexandru <catalin.zamfir@raphpframework.ro>
* @copyright Under the terms of the GNU General Public License v3
* @version $Id: 11_SQL.php 313 2009-10-09 13:27:52Z catalin.zamfir $
* @since Version 1.0
* @access protected
* @static
*/
protected static function renderSQLScreenOfDeath()
{
parent::renderScreenOfDeath(new S(__CLASS__), new S(FATAL_ERROR), new S(FATAL_ERROR_CHECK_LOG), new S(mysql_error()));
}