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


PHP XString::isValidMobile方法代碼示例

本文整理匯總了PHP中XString::isValidMobile方法的典型用法代碼示例。如果您正苦於以下問題:PHP XString::isValidMobile方法的具體用法?PHP XString::isValidMobile怎麽用?PHP XString::isValidMobile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在XString的用法示例。


在下文中一共展示了XString::isValidMobile方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: validateInput

	public function validateInput($request, $response)
	{/*{{{*/
		$patient = $request->patient;
		$goal = array_sum($request->getRequest('goal', array()));
		//防止手機號為全角,js前端過濾失效,後端驗證
		if (!$patient['mobile'] || (false == XString::isValidMobile($patient['mobile'])) || !$request->disease || 
            !$goal || !$request->lastHospital || !$request->description || !$request->date || !$request->registertime)
            return false;
        return true;
	}/*}}}*/
開發者ID:sdgdsffdsfff,項目名稱:hdf-client,代碼行數:10,代碼來源:bookingcontroller.php

示例2: ajaxCheckUser

	public function ajaxCheckUser($request, $response)
	{/*{{{*/
        $message = array('error' => '');
		$name = $request->username;
		$mobile = 	$request->mobile;
		$patientCardNO = $request->patientCardNO;

        if ($name)
        {
            $gbkName = mb_convert_encoding($name, 'gbk', 'utf-8');
            $message['error'] = $this->checkUsername(self::ERROR_RESULT_STRING, $gbkName, $name);
        }
        else if ($mobile)
        {
            if ($mobile && false == XString::isMobile($mobile)) 
            {
                $message['error'] = "手機格式錯誤"; 
            }
            if (!empty($mobile) && false == XString::isValidMobile($mobile))
            {
                $message['error'] = "您填寫的手機號碼不合要求,請修改後重新提交";
            }
            $valueUserMobile = UserClient::getInstance()->getSpaceByUserMobile($mobile);
            if($valueUserMobile)
                $message['error'] = "此手機號碼已經綁定了注冊醫生,請重新確定手機號";

        }
        else if ($patientCardNO)
        {
            if ($this->checkPatientCardNO($patientCardNO) == false)
            {
				$message['error'] = '您輸入的隨訪碼不正確,請核對醫生發放的隨訪碼';
            }
        }
        $message['error'] = mb_convert_encoding($message['error'], 'utf8', 'auto');
        echo json_encode($message);
		exit;
	}/*}}}*/
開發者ID:sdgdsffdsfff,項目名稱:hdf-client,代碼行數:38,代碼來源:usercontroller.php


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