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
 [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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 03:01:28 2024 UTC