本文整理匯總了PHP中zotop::log方法的典型用法代碼示例。如果您正苦於以下問題:PHP zotop::log方法的具體用法?PHP zotop::log怎麽用?PHP zotop::log使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類zotop
的用法示例。
在下文中一共展示了zotop::log方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: login
/**
* 寫入登陸信息
*
*/
public function login($data = array())
{
$data = array_merge($this->bind(), (array) $data);
$data = zotop::filter('zotop.user.login', $data);
//刷新信息
$this->refresh();
//記錄用戶數據
zotop::user($data);
zotop::log('login', zotop::t('用戶 <b>{$username}</b> 於 {$time} 登陸成功', array('username' => $data['username'], 'time' => TIME)));
return true;
}
示例2: login
/**
* 寫入登陸信息
*
*/
public function login($data = array())
{
$username = $data['username'];
$password = $data['password'];
if (empty($username)) {
$this->error(zotop::t('請輸入登陸賬戶名稱'));
return false;
}
if (empty($password)) {
$this->error(zotop::t('請輸入登陸賬戶密碼'));
return false;
}
if (!$this->isValidUserName($username)) {
$this->error(zotop::t('請輸入有效的賬戶名稱'));
return false;
}
if (!$this->isValidPassword($password)) {
$this->error(zotop::t('請輸入有效的賬戶密碼'));
return false;
}
//檢查賬戶是否存在
if (!$this->isExist(array('username', '=', $username))) {
$this->error(zotop::t('賬戶`{$username}`不存在,請檢查是否輸入有誤!', $data));
return false;
}
//加密密碼
$password = $this->password($password);
//讀取用戶
$user = $this->db()->where(array('username', '=', $username))->where(array('password', '=', $password))->getRow();
//驗證
if ($user == false) {
$this->error(zotop::t('賬戶密碼`{$password}`錯誤,請檢查是否輸入有誤!', $data));
return false;
}
//刷新信息
$this->refresh($user['id']);
//記錄用戶數據
zotop::user($user);
zotop::cookie('username', $username, 3600);
zotop::log('login', zotop::t('用戶 <b>{$username}</b> 於 {$time} 登陸成功', array('username' => $username, 'time' => TIME)));
return true;
}