ID:               15203
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Bogus
+Status:           Open
 Bug Type:         POSIX related
 Operating System: FreeBSD 4.2
-PHP Version:      4.0.5
+PHP Version:      4.1.2
 New Comment:

I tried to replace sequence of two backslashes in $text by one
backslash. While preg_replace works, ereg_replace does not make any
change to $text.

$text="\\\\"; # this string contains two backslashes
echo "\n".preg_replace( "/\\\\\\\\/", "\\\\", $text); 
# good, prints one backslash
echo "\n".ereg_replace( "\\\\\\\\",   "\\\\", $text);
# bad, prints two backslashes


Previous Comments:
------------------------------------------------------------------------

[2002-02-04 02:54:23] [EMAIL PROTECTED]

The version of PHP that this bug was reported in is too old. Please
try to reproduce this bug in the latest version of PHP (available
from http://www.php.net/downloads.php

If you are still able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to "Open".

------------------------------------------------------------------------

[2002-01-24 06:39:57] [EMAIL PROTECTED]

The goal is to replace sequence of two backslashes in $text by one
backslash. While preg_replace works, ereg_replace does not make any
change to $text.


echo "preg_replace\n";
$text="\\\\";
echo "--".$text."--".strlen($text)."\n";
$text=preg_replace( "/\\\\\\\\/", "\\\\", $text);
echo "--".$text."--".strlen($text)."\n";
echo "\n";
echo "ereg_replace\n";
$text="\\\\";
echo "--".$text."--".strlen($text)."\n";
$text=ereg_replace( "\\\\\\\\", "\\\\", $text);
echo "--".$text."--".strlen($text)."\n";


./configure \
        --with-mysql=/usr/local/mysql \
        --with-imap=/usr/ports/new/imap \
        --enable-track-vars \
        --enable-trans-sid



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=15203&edit=1

Reply via email to