php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #38599 Subpattern is not captured for backreference in some cases
Submitted: 2006-08-25 21:02 UTC Modified: 2006-08-28 06:15 UTC
From: pilotv at rambler dot ru Assigned:
Status: Not a bug Package: PCRE related
PHP Version: 4.4.4 OS: All
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: pilotv at rambler dot ru
New email:
PHP Version: OS:

 

 [2006-08-25 21:02 UTC] pilotv at rambler dot ru
Description:
------------
(Sorry for my english)
Subpattern is not captured for backreference if it is followed by '?' and does not appear in subject string.

Reproduce code:
---------------
<?
$str=<<<EOD
<a href="aaa">
<a href='aaa'>
<a href=aaa>
EOD;

// Following RE works properly
$re='/<a href=(["\']?)(\w+)\1>/iS';
preg_match_all($re,$str,$regs,PREG_SET_ORDER);
print_r($regs);

// Following RE works wrong
$re='/<a href=(["\'])?(\w+)\1>/iS';
preg_match_all($re,$str,$regs,PREG_SET_ORDER);
print_r($regs);
?>


Expected result:
----------------
// Produced by 1st RE:
Array
(
    [0] => Array
        (
            [0] => <a href="aaa">
            [1] => "
            [2] => aaa
        )

    [1] => Array
        (
            [0] => <a href='aaa'>
            [1] => '
            [2] => aaa
        )

    [2] => Array
        (
            [0] => <a href=aaa>
            [1] => 
            [2] => aaa
        )

)


Actual result:
--------------
// Produced by 2nd RE:
Array
(
    [0] => Array
        (
            [0] => <a href="aaa">
            [1] => "
            [2] => aaa
        )

    [1] => Array
        (
            [0] => <a href='aaa'>
            [1] => '
            [2] => aaa
        )

)


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-08-25 21:38 UTC] tony2001@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip


 [2006-08-25 23:17 UTC] pilotv at rambler dot ru
Sorry, I can not compile PHP myself here.
But I tryed latest available for download version 5.1.6. This bug is still present in it.
 [2006-08-28 06:15 UTC] tony2001@php.net
PCRE problems and limitations are not PHP problems.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 17:01:28 2024 UTC