- 當前位置:
- 首頁 >
- 使用正則表達式(Regular Expression)來驗證電子郵件地址是否符合特定的格式
使用正則表達式(Regular Expression)來驗證電子郵件地址是否符合特定的格式
發(fā)布時間:2024年03月10日 20:06:39 作者:piikee 瀏覽數(shù):835
<?php
function filterEmail($email) {
// 郵箱驗證正則表達式
$pattern = '/^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/';
// 使用正則表達式驗證郵箱
if (preg_match($pattern, $email)) {
echo "郵箱地址有效:$email";
} else {
echo "無效的郵箱地址:$email";
}
}
// 例子
filterEmail("user@example.com");
filterEmail("invalid-email");
?>