本文整理匯總了PHP中http::skip方法的典型用法代碼示例。如果您正苦於以下問題:PHP http::skip方法的具體用法?PHP http::skip怎麽用?PHP http::skip使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類http
的用法示例。
在下文中一共展示了http::skip方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: index
function index()
{
//驗證權限,跳轉提示頁麵
if (!in_array(parent::visite_access, $this->admin_access)) {
http::skip('message/login/forbid');
}
//接收請求參數
$category = rq(2);
//類型(1,已讀/0,未讀/全部)
$page = rq(3, 1);
//頁碼
//獲取刪除和回複權限
$del_access = in_array(parent::del_access, $this->admin_access);
$reply_access = in_array(parent::reply_access, $this->admin_access);
//調用查詢模型
$message = self::message_model($category, $page, 10);
//處理分頁導航
$page_url = dc_url . 'manage/' . $category . '/';
$page_nav = s_page::mark($page_url, $message['info'][0], $page, 3);
//視圖賦值
$tpl = smarty('admin');
$head['frame'] = '_self';
$head['title'] = '留言管理_EQPHP案例留言本';
$tpl->assign('head', $head);
$tpl->assign('del_access', $del_access);
$tpl->assign('reply_access', $reply_access);
$tpl->assign('rs_count', $message['num']);
$tpl->assign('message', $message['info'][1]);
$tpl->assign('page_nav', $page_nav);
//渲染視圖模板
$tpl->display('message/manage');
}
示例2: __construct
function __construct()
{
$admin = session('admin');
if ($admin) {
$this->admin_account = $admin['account'];
$this->admin_access = explode(',', $admin['access']);
}
//若用戶未登錄,跳轉至登錄頁麵
if (!$this->admin_account) {
http::skip('message/login');
}
}
示例3: index
static function index()
{
$admin = session('admin');
//若管理員已登錄,跳轉至管理首頁
if ($admin && $admin['account']) {
http::skip('message/manage');
}
$tpl = smarty();
$head['title'] = '管理員登陸_EQPHP案例留言本';
$tpl->assign('head', $head);
//輸出模板
$tpl->display('message/login');
}
示例4: email_reply
function email_reply()
{
//驗證權限,跳轉提示頁麵
if (!in_array(parent::reply_access, $this->admin_access)) {
http::skip('login/forbid');
}
$tip_info = array('error' => 1, 'info' => 'send email failed');
if (post('email', 'isset')) {
//接收數據
$email = post('email', 'post');
$title = post('title', 'title');
$content = post('content', 'info');
//發送郵件
mail::send($email, $title, $content);
$tip_info = array('error' => 0, 'info' => 'email sent');
}
http::json($tip_info);
}