php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #52991 wrong output
Submitted: 2010-10-05 11:32 UTC Modified: 2013-02-18 00:34 UTC
From: oinam dot s at ldh dot 01s dot in Assigned:
Status: No Feedback Package: Filter related
PHP Version: 5.3.3 OS: windows
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
39 + 13 = ?
Subscribe to this entry?

 
 [2010-10-05 11:32 UTC] 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 = 'oinam.s@ldh.01s.in';

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 ( oinam.s@ldh.01s.in ) email address is considered valid.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-10-07 04:09 UTC] aharvey@php.net
-Status: Open +Status: Feedback
 [2010-10-07 04:09 UTC] aharvey@php.net
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.
 [2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri May 10 12:01:32 2024 UTC