ID: 14849
Updated by: swm
Old Summary: str_replace() doesn't understand the '\t' escape sequence
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Strings related
Operating System: FreeBSD
PHP Version: 4.1.0
New Comment:
Appears to be solved in current CVS:
<?
$content = "that this";
$content = str_replace("\t", "", $content);
echo $content;
?>
[swm@www test]$ ../php4/php -q t.php | od -c |less
0000000 t h a t t h i s
0000010
moreover:
[swm@www test]$ ../php4/php -q t.php | od -c |less
0000000 t h a t t h i s
0000010
Closing. Reopen if you still have problems.
Previous Comments:
------------------------------------------------------------------------
[2002-01-04 10:04:49] [EMAIL PROTECTED]
$content = str_replace("\t", "", $content);
- doesn't do antything, ie str_replace() doesn't understand the '\t'
escape character
$content = str_replace("\x09", "", $content);
works fine however
thanks for php! =)
*hugs*
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=14849&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]