php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #7257 RegEx kills String
Submitted: 2000-10-16 15:29 UTC Modified: 2000-10-23 05:21 UTC
From: hoglabogla at hotmail dot com Assigned:
Status: Closed Package: *Regular Expressions
PHP Version: 4.0.3pl1 OS: Redhat Linux 7.0
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: hoglabogla at hotmail dot com
New email:
PHP Version: OS:

 

 [2000-10-16 15:29 UTC] hoglabogla at hotmail dot com
$mask= "anything";
$mask= preg_replace("/\\/", "/a/", $mask);

if( $mask ) 
  echo "Empty? Hu? PHP-Bug?";
else
  echo "OK";

The preg_replace kills $mask, witch it shouldn't, i guess

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-10-16 15:31 UTC] hoglabogla at hotmail dot com
Ooops! The other way round, of course:

if( $mask ) 
  echo "OK";
else
  echo "Empty? Hu? PHP-Bug?";

 [2000-10-23 05:21 UTC] stas@php.net
Your regexp is wrong - it is passed to Perl as /\/, which is lacking the ending /. Since regexp is bad, NULL is returned, and that's what you get in $mask.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Dec 26 20:01:29 2024 UTC