以下是一個使用PHP正則表達式驗證郵箱格式的示例:
$email = "test@example.com";
if (preg_match("/^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$/", $email)) {
echo "郵箱格式正確";
} else {
echo "郵箱格式不正確";
}
上述正則表達式的含義是:
如果郵箱格式符合上述正則表達式的規則,則輸出"郵箱格式正確",否則輸出"郵箱格式不正確"。