|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-07-24 20:00 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 18:00:01 2025 UTC |
$_ = 'test\\string'; $_ = preg_replace('/\\/i', 'A', $_); echo $_; doesn't replace (in php 4.2.0 it works!) and $_ = 'test\\string'; $_ = preg_replace('/\\\/i', 'A', $_); echo $_; works. I think is a bug