다음 코드는 이름 필드에 문자와 공백이 포함되어 있는지 여부를 감지하는 간단한 방법을 사용합니다. 이름 필드 값이 잘못된 경우 오류 메시지를 출력합니다.
$name = test_input($_POST["name"]); if (!preg_match("/^[a-zA-Z ]*$/",$name)) { $nameErr = "只允许字母及空格"; }
PS:
preg_match — 정규식 일치를 수행합니다.
구문:int preg_match ( string $pattern , string $subject [, array $matches [, int $flags ]] )
주제 문자열 콘텐츠에서 패턴으로 제공되는 정규식을 검색합니다. 수식과 일치하는 것입니다. 일치하는 항목이 제공되면 검색 결과로 채워집니다. $matches[0]에는 전체 패턴과 일치하는 텍스트가 포함되고, $matches[1]에는 괄호 안의 첫 번째 캡처된 하위 패턴과 일치하는 텍스트가 포함됩니다.다음 코드는 간단한 방법으로 이메일 주소가 합법적인지 확인합니다. 이메일 주소가 유효하지 않은 경우
$email = test_input($_POST["email"]); if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/",$email)) { $emailErr = "非法邮件地址"; }
다음 코드는 URL 주소가 유효한지 확인합니다(다음 정규 표현식 작업 URL에는 대시: "-"가 포함되어 있음). URL 주소가 잘못된 경우
$website = test_input($_POST["website"]); if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$website)) { $websiteErr = "不合法的 URL"; }
코드는 다음과 같습니다:
Instance
<?php // 定义变量并设为空值 $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 syntax is valid if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/",$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"]);} } ?>
위 내용은 PHP 개발 양식 확인 이메일 및 URL의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!