📄 error.php
字号:
<?php
require( "./inc/config.php" );
require( "./inc/lib.php" );
error_reporting( E_ALL ^ E_NOTICE );
define( "SMARTY_DIR", "./smarty/" );
require_once( SMARTY_DIR."Smarty.class.php" );
$smarty = new smarty( );
$smarty->compile_dir = $temporary_directory;
$smarty->security = true;
$smarty->secure_dir = array( "./" );
$smarty->assign( "umLanguageFile", $selected_language.".txt" );
$phpver = phpversion( );
$phpver = doubleval( $phpver[0].".".$phpver[2] );
if ( 4.1 <= $phpver )
{
extract( $_GET );
}
$smarty->assign( "umSid", $sid );
$smarty->assign( "umLid", $lid );
$smarty->assign( "umTid", $tid );
$smarty->assign( "umErrorCode", $err );
$smarty->display( "neotech.net/error.htm" );
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -