ID:               40863
 Updated by:       [EMAIL PROTECTED]
 Reported By:      jonathan at sadowski dot us
 Status:           Closed
 Bug Type:         Documentation problem
 Operating System: Ubuntu
 PHP Version:      5.2.1
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.




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

[2007-03-23 13:48:52] [EMAIL PROTECTED]

"Every replacement with search array is performed on the result of
previous replacement."

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

[2007-03-20 10:49:13] jonathan at sadowski dot us

Then at the very least it's a documentation problem, because that is
not clear in the documentation... to me, that's not desired
functionality.

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

[2007-03-20 10:41:12] [EMAIL PROTECTED]

Please read what I say:
str_ireplace() changes 'E' and 'e' to 'W' and then changes 'W' to 'G'.

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

[2007-03-20 10:40:10] jonathan at sadowski dot us

Here's a more concrete example...  The last line of the output should
be "WE THE PEOPLE OF THE UNITED STATES"

<?php
$phrase = "We the People of the United States";
$letters = explode(" ","A B C D E F G H I J K L M N O P Q R S T U V W X
Y Z");
$key = explode(" ","V T U O W Q E X Y K S D Z B M A I L J R C F G H P
N");
$TMP1 = str_ireplace($letters,$key,$phrase);
$TMP2 = str_ireplace($key,$letters,$TMP1);
echo $phrase . "\n";
echo $TMP1 . "\n";
echo $TMP2 . "\n";
?>


Actual output:
We the People of the United States
GG RHG AGMADG MI RHG CBPRGM JRFRGJ
WW TXW YWOYTW OQ TXW UZYTWO STVTWS

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

[2007-03-20 10:28:41] jonathan at sadowski dot us

Perhaps you should read the expected result before marking it bogus,
and read through the sample code to see what its supposed to do.

The first word is "We", this cannot produce "GG" no matter what, as "W"
and "e" are two different words.

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

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/40863

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

Reply via email to