ID: 11594
Updated by: andrei
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: PCRE related
Operating System: Solaris
PHP Version: 4.0.5
New Comment:
You need to use '\\\\$' as you replacement string.
Previous Comments:
------------------------------------------------------------------------
[2001-06-20 17:40:55] [EMAIL PROTECTED]
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
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=11594&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]