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

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".


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

[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


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to