php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12140 pcre_replace change behavior with \
Submitted: 2001-07-13 08:51 UTC Modified: 2001-08-06 12:58 UTC
From: madmax at express dot ru Assigned:
Status: Closed Package: PCRE related
PHP Version: 4.0.6 OS:
Private report: No CVE-ID: None
 [2001-07-13 08:51 UTC] madmax at express dot ru
task: 
need replace \ (one) to \\\\ (four)

On php.4.0.5 work:
$val1=preg_replace('/\\\/',"\\\\\\\\",$val);

On php 4.0.6 work:
$val1=preg_replace('/\\\/',"\\\\\\\\\\\\\\\\",$val);

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-08-06 12:58 UTC] andrei@php.net
That's right. Your  \\\\\\\\ turns into \\\\ by the time PHP string parsing is done with it. Then the extension looks at it and sees two escaped backslashes so that's what you get - two backslashes.

In general, use str_replace() for things like that.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 21:01:31 2024 UTC