📄 common.inc.php
字号:
<?php
/*********************/
/* */
/* Version : 5.1.0 */
/* Author : RM */
/* Comment : 071223 */
/* */
/*********************/
if ( !defined( "IN_UCHOME" ) )
{
exit( "Access Denied" );
}
$acs = array( "index", "resumes", "resume", "me", "collect", "apply", "myjobs", "company", "newjob", "post", "jobs", "jobresumes" );
$ac = !empty( $_GET['ac'] ) || !in_array( $_GET['ac'], $acs ) ? "index" : $_GET['ac'];
$op = empty( $_GET['op'] ) ? "" : $_GET['op'];
if ( empty( $_SGLOBAL['supe_uid'] ) )
{
if ( $_SERVER['REQUEST_METHOD'] == "GET" )
{
ssetcookie( "_refer", rawurlencode( $_SERVER['REQUEST_URI'] ) );
}
else
{
ssetcookie( "_refer", rawurlencode( "parking.php?ac=".$ac ) );
}
showmessage( "to_login", "do.php?ac=login" );
}
$space = getspace( $_SGLOBAL['supe_uid'] );
if ( empty( $space ) )
{
showmessage( "space_does_not_exist" );
}
$actives = array( " class=\"active\"" );
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -