php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #15070 ereg() not matching properly.
Submitted: 2002-01-16 12:24 UTC Modified: 2002-02-11 17:22 UTC
From: mking at aspre dot net Assigned:
Status: Not a bug Package: Regexps related
PHP Version: 4.0.6 OS: Linux (Cobalt)
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: mking at aspre dot net
New email:
PHP Version: OS:

 

 [2002-01-16 12:24 UTC] mking at aspre dot net
I'm having weird problems with ereg(). Look at the following code. There is no reason that ereg() should return false with the value ("1.99"). It does. It returns true with "1.90". This pattern should return true for (in english):

0 or more of anything, one "." exactly, two digits exactly, 0 or more of anything

I think there may be a problem with the regex libraries. This worked in 4.05, but now does not work with 4.06

$vTmp = "$1.99";   // "$1.90" works!!!
settype($vTmp, "double");
if(ereg(".*\.[0-9][0-9].*",$vTmp))
{
    // handle error
}else{
    // continue
} 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-02-11 17:21 UTC] mking at aspre dot net
I'm reopening so someone can bogus this bug. (I don't seem to have that option).
 [2002-02-11 17:22 UTC] derick@php.net
Bogusify on request
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 17:01:29 2024 UTC