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


PHP Registration::checkEmail方法代碼示例

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


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

示例1: elseif

     } elseif (strlen($_POST['password']) > 40) {
         $err[] = "Příliš dlouhé heslo!";
     }
 } else {
     $err[] = "Není vyplněné heslo!";
 }
 $password = md5($_POST['password']);
 /**
  * EMAIL checkout
  */
 if ($_POST['email'] != "") {
     if (!validateEMAIL($_POST['email'])) {
         $err[] = "Email má špatný formát!";
     }
     $checkLogin = new Registration();
     if (!$checkLogin->checkEmail($_POST['email'])) {
         $err[] = "Toto email již používá jiný uživatel!";
     }
 } else {
     $err[] = "Email není vyplněný!";
 }
 $email = $_POST['email'];
 /**
  * PODMINKY checkout
  */
 if (!isset($_POST['podminky'])) {
     $err[] = "Musí být potvrzené podmínky!";
 }
 if (empty($err)) {
     $registration = new Registration();
     $registration->registrate($login, $password, $email);
開發者ID:ununik,項目名稱:tiary,代碼行數:31,代碼來源:registration.php

示例2: safeText

 $web = safeText($_POST['web']);
 if (!(substr($web, 0, 7) == 'http://') && !(substr($web, 0, 8) == 'https://')) {
     $web = 'http://' . $web;
 }
 //kontrola prijmeni
 $lastname = safeText($_POST['lastname']);
 if (strlen($lastname) > 255) {
     $err[] = "Příliš dlouhé příjmení!";
 }
 //change email
 if ($_POST['email'] != "") {
     if (!validateEMAIL($_POST['email'])) {
         $err[] = "Email má špatný formát!";
     }
     $checkLogin = new Registration();
     if (!$checkLogin->checkEmail($_POST['email']) && $_POST['email'] != $profil->getEmailAdmin()) {
         $err[] = "Toto email již používá jiný uživatel!";
     }
 } else {
     $err[] = "Email není vyplněný!";
 }
 $email = safeText($_POST['email']);
 //show mail
 if (isset($_POST['showMail'])) {
     $showMail = 1;
 } else {
     $showMail = 0;
 }
 //change tel
 $tel = safeText($_POST['tel']);
 if (strlen($tel) > 25) {
開發者ID:ununik,項目名稱:tiary,代碼行數:31,代碼來源:profil_update.php


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