本文整理匯總了PHP中front::alert方法的典型用法代碼示例。如果您正苦於以下問題:PHP front::alert方法的具體用法?PHP front::alert怎麽用?PHP front::alert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類front
的用法示例。
在下文中一共展示了front::alert方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: index_action
function index_action() {
if (front::post('submit')) {
if (!front::post('ballot')) {
front::alert(lang('Please_select_vote'));
return false;
}
if (config::get('checkip')) {
$time=cookie::get('vttime');
if (time() -$time <config::get('timer') * 60) {
front::alert(lang('You_have_voted'));
return false;
}
}
$bid=front::$post['bid'];
if (is_array(front::$post['ballot'])) {
$ids=implode(',',front::$post['ballot']);
}
else {
$ids=front::$post['ballot'];
}
if(preg_match('/(select|union|and|\'|"|\))/i',$ids)){
exit('非法參數');
}
if(preg_match('/(select|union|and|\'|"|\))/i',$bid)){
exit('非法參數');
}
$where="id in($ids)";
$data='num=num+1';
$option=new option();
$option->rec_update($data,$where);
$this->_table->rec_update($data,$bid);
cookie::set('vttime',time(),time() +3600 * 24);
front::alert(lang('Successful_vote'));
}
}
示例2: login_action
function login_action() {
cookie::del('passinfo');
//$_SESSION['test'] = 'test';
$this->view->loginfalse=cookie::get('loginfalse'.md5($_SERVER['REQUEST_URI']));
if (front::post('submit')) {
if ($this->view->loginfalse) {
if (!session::get('verify') ||front::post('verify') <>session::get('verify')) {
front::flash('驗證碼錯誤!');
$this->render();
exit;
}
}
$user=new user();
$user=$user->getrow(array('username'=>front::post('username'),'password'=>md5(front::post('password'))));
if (is_array($user)) {
$roles = usergroup::getRoles($user['groupid']);
session::set('roles',null);
if($roles){
front::$isadmin=true;
session::set('roles',$roles);
}else{
front::alert('無權登錄後台');
}
if(!front::post('expire')){
cookie::set('login_username',$user['username']);
cookie::set('login_password',front::cookie_encode($user['password']));
}else{
$expire = time() + front::post('expire');
cookie::set('login_username',$user['username'],$expire);
cookie::set('login_password',front::cookie_encode($user['password']),$expire);
}
session::set('username',$user['username']);
event::log('後台登錄','成功');
require_once ROOT.'/celive/include/config.inc.php';
require_once ROOT.'/celive/include/celive.class.php';
$login=new celive();
$login->auth();
$GLOBALS['auth']->login(front::post('username'),front::post('password'));
$GLOBALS['auth']->check_login1();
front::$user=$user;
}elseif (!is_array(front::$user) ||!isset(front::$isadmin)) {
cookie::set('loginfalse'.md5($_SERVER['REQUEST_URI']),(int) cookie::get('loginfalse'.md5($_SERVER['REQUEST_URI'])) +1,time() +3600);
event::log('loginfalse','失敗 user='.front::post('username'));
front::flash('密碼錯誤或不存在該管理員!');
front::refresh(url('admin/login',true));
}
}
$this->render();
}
示例3: chkpwf
function chkpwf($str,$groupid){
if(!chkfpw($str,$groupid))
front::alert('無操作權限!');
}