21xrx.com
2024-11-05 17:31:27 Tuesday
登录
文章检索 我的文章 写文章
PHP表格 - 验证电子邮件和URL
2021-07-22 09:25:40 深夜i     --     --
P H P U R L


本章显示如何验证名称,电子邮件和URL。


PHP - 验证名称

下面的代码显示了一种单独检查名称字段是否包含的简单方法 字母,破折号,撇号和空白。 如果名称字段的值无效,则存储 错误消息:

$name = test_input($_POST["name"]);
if (!preg_match("/^[a-zA-Z-' ]*$/",$name)) {
  $nameErr = "Only letters and white space allowed";
}

preg_match()函数搜索字符串以进行匹配,如果为true返回true 图案存在,否则是返回false。


PHP - 验证电子邮件

最简单,最安全的方式来检查电子邮件地址是否完整 是使用php的filter_var()函数。

在下面的代码中,如果电子邮件地址不完整,则存储错误消息:

$email = test_input($_POST["email"]);
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
  $emailErr = "Invalid email format";
}

PHP - 验证URL

下面的代码显示了检查URL地址是否有效(此正则表达式也允许URL中的破折号))。 如果URL地址语法无效,则存储错误消息:

$website = test_input($_POST["website"]);
if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$website)) {
  $websiteErr = "Invalid URL";
}

 


PHP - 验证名称,电子邮件和URL

现在,脚本如下所示:

<?php
// define variables and set to empty values
$nameErr = $emailErr = $genderErr = $websiteErr = "";
$name = $email = $gender = $comment = $website = "";

if ($_SERVER["REQUEST_METHOD"] == "POST") {
  if (empty($_POST["name"])) {
    $nameErr = "Name is required";
  } else {
    $name = test_input($_POST["name"]);
    // check if name only contains letters and whitespace
    if (!preg_match("/^[a-zA-Z-' ]*$/",$name)) {
      $nameErr = "Only letters and white space allowed";
    }
  }

  if (empty($_POST["email"])) {
    $emailErr = "Email is required";
  } else {
    $email = test_input($_POST["email"]);
    // check if e-mail address is well-formed
    if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
      $emailErr = "Invalid email format";
    }
  }

  if (empty($_POST["website"])) {
    $website = "";
  } else {
    $website = test_input($_POST["website"]);
    // check if URL address syntax is valid (this regular expression also allows dashes in the URL)
    if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$website)) {
      $websiteErr = "Invalid URL";
    }
  }

  if (empty($_POST["comment"])) {
    $comment = "";
  } else {
    $comment = test_input($_POST["comment"]);
  }

  if (empty($_POST["gender"])) {
    $genderErr = "Gender is required";
  } else {
    $gender = test_input($_POST["gender"]);
  }
}
?>

 

下一步是展示如何防止表格清空所有输入 用户提交表单时的字段。

 

 

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复