當前位置: 首頁>>代碼示例>>PHP>>正文


PHP UserData::modify方法代碼示例

本文整理匯總了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();
 }
開發者ID:jianchengdu,項目名稱:dangjia,代碼行數:45,代碼來源:MyController.php


注:本文中的UserData::modify方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。