php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11594 preg_replace is not working with backslash $
Submitted: 2001-06-20 17:40 UTC Modified: 2001-08-06 13:01 UTC
From: PWMoosman at aol dot com Assigned:
Status: Closed Package: PCRE related
PHP Version: 4.0.5 OS: Solaris
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: PWMoosman at aol dot com
New email:
PHP Version: OS:

 

 [2001-06-20 17:40 UTC] PWMoosman at aol dot com
I'm trying to use preg_replace to replace $ with \$.

Here is a sample script:

<?

$data = '$_hello_$world';

$data = preg_replace('/\$/i','\$',$data);
print "data : $data\n";

?>


I expect the script to output \$_hello_\$world. However, version 4.0.5 is outputing $_hello_$world.

This worked in version 4.0.4

It possible this bug is related to bug# 10668


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-08-06 13:01 UTC] andrei@php.net
You need to use '\\\\$' as you replacement string.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue May 06 09:01:28 2025 UTC