php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #22320 preg_match have BUG ???
Submitted: 2003-02-20 03:35 UTC Modified: 2003-02-20 04:47 UTC
From: php at frusti dot com Assigned:
Status: Not a bug Package: PCRE related
PHP Version: 4.3.0 OS: Windows 2000
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: php at frusti dot com
New email:
PHP Version: OS:

 

 [2003-02-20 03:35 UTC] php at frusti dot com
!!! I have a urgence problem !!!

Please show this statements:

$sql = "UPDATE TFrusti SET entity='FAN', SYSFLD001='Test with Clob-Data Entity just for test!' WHERE SYSPID = 411";
preg_match("/^UPDATE\s(\w+)\sSET\s(.*?)([WHERE.*|$])/s",$sql,$matches);

my problem now is, if in the subject (here the value of the $sql) is the word "Entity" this expression deliver just a truncated match, but if the word "entity" ist in lower-case inside the $sql-Variable the expression deliver the correct matches!!!!

Results:
$matches[2] with lower-case "entity" shows following value: "entity='FAN', SYSFLD001='Test with Clob-Data Entity just for test!'"

$matches[2] with upper-case "Entity" shows this values:
entity='FAN', SYSFLD001='Test with Clob-Data"

Have anyone a answer or know this problems?

Thanks and best regards,
Frast Andreas

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-02-20 04:47 UTC] alan_k@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.

[WHERE.*|$] matches W or H or E or R or E or . or * or | or $,
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 05:01:29 2024 UTC