Edit report at http://bugs.php.net/bug.php?id=52991&edit=1
ID: 52991 Updated by: [email protected] Reported by: oinam dot s at ldh dot 01s dot in Summary: wrong output -Status: Open +Status: Feedback Type: Bug Package: Filter related Operating System: windows PHP Version: 5.3.3 Block user comment: N New Comment: Please try using this snapshot: http://snaps.php.net/php5.3-latest.tar.gz For Windows: http://windows.php.net/snapshots/ I can't reproduce this on any current 5.2, 5.3 or trunk build. Previous Comments: ------------------------------------------------------------------------ [2010-10-05 11:32:30] oinam dot s at ldh dot 01s dot in Description: ------------ When I test email using filter_var it gives incorrect output. Test script: --------------- <?php $email_c = '[email protected]'; if (filter_var($email_c, FILTER_VALIDATE_EMAIL)) { echo "This ($email_c) email address is considered valid."; } else { echo "This ( $email_c ) email address is considered invalid."; } ?> Expected result: ---------------- This script works fine give correct result on php 5.2.x not on 5.3.x Actual result: -------------- The following should be the actual output This ( [email protected] ) email address is considered valid. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=52991&edit=1
