#66063 Make output from first filter example consistent with other filter examples

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@332088 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jeff Welch 2013-11-09 05:10:50 +00:00
parent e30aeef1f5
commit e48b67c078

View file

@ -16,10 +16,10 @@ $email_a = 'joe@example.com';
$email_b = 'bogus';
if (filter_var($email_a, FILTER_VALIDATE_EMAIL)) {
echo "This ($email_a) email address is considered valid.";
echo "This (email_a) email address is considered valid.";
}
if (filter_var($email_b, FILTER_VALIDATE_EMAIL)) {
echo "This ($email_b) email address is considered valid.";
echo "This (email_b) email address is considered valid.";
}
?>
]]>