本文整理汇总了PHP中UserData::modify方法的典型用法代码示例。如果您正苦于以下问题:PHP UserData::modify方法的具体用法?PHP UserData::modify怎么用?PHP UserData::modify使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserData
的用法示例。
在下文中一共展示了UserData::modify方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: infoAction
/**
* 我的信息
*/
public function infoAction()
{
$currUser = $this->refreshCurrentUser();
//$currUser = $this->getCurrentUser ();
if (ComTool::isAjax()) {
if (isset($_POST['captcha'])) {
$captcha = trim($this->post('captcha'));
if (!ComTool::checkCaptcha($captcha)) {
ComTool::ajax(100001, '验证码错误');
}
}
$email = trim($this->post('email', ''));
ComTool::checkEmpty($email, '请填写常用邮箱');
ComTool::checkMaxLen($email, 32, '邮箱最多32位');
if (!ComTool::isEmail($email)) {
ComTool::ajax(100001, '请填写正确的邮箱');
}
//检查邮箱唯一性
$user = UserData::getByEmail($email);
if ($user && $user['id'] != $currUser['id']) {
ComTool::ajax(100001, '邮箱已被占用');
}
$mobile = trim($this->post('mobile', ''));
//ComTool::checkEmpty ( $mobile, '请填写常用手机号' );
if ($mobile && !ComTool::isMobile($mobile)) {
ComTool::ajax(100001, '请填写正确的手机号');
}
//检查手机号唯一性
if ($mobile) {
$user = UserData::getByMobile($mobile);
if ($user && $user['id'] != $currUser['id']) {
ComTool::ajax(100001, '手机号已被占用');
}
}
$name = trim($this->post('name'));
ComTool::checkMaxLen($name, 16, "名称最多16位");
$res = UserData::modify($currUser['id'], array('name' => $name, 'email' => $email, 'mobile' => $mobile, 'update_time' => time()));
ComTool::result($res, '服务器忙,请重试', '保存成功');
}
$this->assign("currUser", $currUser);
$this->display();
}