本文整理汇总了PHP中UserUtil::isValidEmail方法的典型用法代码示例。如果您正苦于以下问题:PHP UserUtil::isValidEmail方法的具体用法?PHP UserUtil::isValidEmail怎么用?PHP UserUtil::isValidEmail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserUtil
的用法示例。
在下文中一共展示了UserUtil::isValidEmail方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validate
/**
* @see Form::validate()
*/
public function validate()
{
// check valide email from guest
if (!WCF::getUser()->userID) {
if (empty($this->email)) {
throw new UserInputException('email');
}
if (!UserUtil::isValidEmail($this->email)) {
throw new UserInputException('email', 'notValid');
}
// check empty username
if (empty($this->username)) {
throw new UserInputException('username');
}
}
// check empty subject
if (empty($this->subject)) {
throw new UserInputException('subject');
}
// check empty message
if (empty($this->message)) {
throw new UserInputException('message');
}
parent::validate();
}
示例2: validate
/**
* @see Form::validate()
*/
public function validate()
{
if (!WCF::getUser()->userID) {
if (empty($this->email)) {
throw new UserInputException('email');
}
if (!UserUtil::isValidEmail($this->email)) {
throw new UserInputException('email', 'notValid');
}
}
if (empty($this->subject)) {
throw new UserInputException('subject');
}
if (empty($this->message)) {
throw new UserInputException('message');
}
parent::validate();
}
示例3: isValidEmail
/**
* Returns true if the given e-mail is a valid address.
*
* @param string $email
* @return boolean
*/
public static function isValidEmail($email)
{
return UserUtil::isValidEmail($email) && self::checkForbiddenEmails($email);
}
示例4: createUser
/**
* Shows the page for creating the admin account.
*/
protected function createUser()
{
$errorType = $errorField = $username = $email = $confirmEmail = $password = $confirmPassword = '';
$username = '';
$email = $confirmEmail = '';
$password = $confirmPassword = '';
if (isset($_POST['send']) || self::$developerMode) {
if (isset($_POST['send'])) {
if (isset($_POST['username'])) {
$username = StringUtil::trim($_POST['username']);
}
if (isset($_POST['email'])) {
$email = StringUtil::trim($_POST['email']);
}
if (isset($_POST['confirmEmail'])) {
$confirmEmail = StringUtil::trim($_POST['confirmEmail']);
}
if (isset($_POST['password'])) {
$password = $_POST['password'];
}
if (isset($_POST['confirmPassword'])) {
$confirmPassword = $_POST['confirmPassword'];
}
} else {
$username = $password = $confirmPassword = 'root';
$email = $confirmEmail = 'woltlab@woltlab.com';
}
// error handling
try {
// username
if (empty($username)) {
throw new UserInputException('username');
}
if (!UserUtil::isValidUsername($username)) {
throw new UserInputException('username', 'notValid');
}
// e-mail address
if (empty($email)) {
throw new UserInputException('email');
}
if (!UserUtil::isValidEmail($email)) {
throw new UserInputException('email', 'notValid');
}
// confirm e-mail address
if ($email != $confirmEmail) {
throw new UserInputException('confirmEmail', 'notEqual');
}
// password
if (empty($password)) {
throw new UserInputException('password');
}
// confirm e-mail address
if ($password != $confirmPassword) {
throw new UserInputException('confirmPassword', 'notEqual');
}
// no errors
// init database connection
$this->initDB();
// get language id
$languageID = 0;
$sql = "SELECT\tlanguageID\n\t\t\t\t\tFROM\twcf" . WCF_N . "_language\n\t\t\t\t\tWHERE\tlanguageCode = '" . escapeString(self::$selectedLanguageCode) . "'";
$row = self::getDB()->getFirstRow($sql);
if (isset($row['languageID'])) {
$languageID = $row['languageID'];
}
// create user
$user = UserEditor::create($username, $email, $password, array(1, 3, 4), array(), array('languageID' => $languageID), array(), false);
// go to next step
$this->gotoNextStep('installPackages');
exit;
} catch (UserInputException $e) {
$errorField = $e->getField();
$errorType = $e->getType();
}
}
WCF::getTPL()->assign(array('errorField' => $errorField, 'errorType' => $errorType, 'username' => $username, 'email' => $email, 'confirmEmail' => $confirmEmail, 'password' => $password, 'confirmPassword' => $confirmPassword, 'nextStep' => 'createUser'));
WCF::getTPL()->display('stepCreateUser');
}
示例5: validateEmail
/**
* Throws a UserInputException if the email is not unique or not valid.
*
* @param string $email
* @param string $confirmEmail
*/
protected function validateEmail($email, $confirmEmail)
{
if (empty($email)) {
throw new UserInputException('email');
}
// check for valid email (one @ etc.)
if (!UserUtil::isValidEmail($email)) {
throw new UserInputException('email', 'notValid');
}
// Check if email exists already.
if (!UserUtil::isAvailableEmail($email)) {
throw new UserInputException('email', 'notUnique');
}
// check confirm input
if (StringUtil::toLowerCase($email) != StringUtil::toLowerCase($confirmEmail)) {
throw new UserInputException('confirmEmail', 'notEqual');
}
}