php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #14849 str_replace() doesn't understand the '\t' escape sequence
Submitted: 2002-01-04 10:04 UTC Modified: 2002-01-13 08:52 UTC
From: no at email dot com Assigned:
Status: Closed Package: Strings related
PHP Version: 4.1.0 OS: FreeBSD
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: no at email dot com
New email:
PHP Version: OS:

 

 [2002-01-04 10:04 UTC] no at email dot com
$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*

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-01-13 08:52 UTC] swm@php.net
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.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Feb 05 06:01:32 2025 UTC