php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #3893 strtok can't tok \t\t (2 tabs)
Submitted: 2000-03-22 08:39 UTC Modified: 2002-10-01 15:57 UTC
From: ttj at mark dot ee dot nctu dot edu dot tw Assigned:
Status: Wont fix Package: Misbehaving function
PHP Version: 3.0.15 OS: FreeBSD 3.3R
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: ttj at mark dot ee dot nctu dot edu dot tw
New email:
PHP Version: OS:

 

 [2000-03-22 08:39 UTC] ttj at mark dot ee dot nctu dot edu dot tw
<?
//if the following words seperated by 2 continuous TAB char
$line="This             is              a               test";
$token=strtok($line,"\t\t");
while($token){
  echo "$token<br>";
  $token=strtok("\t\t");
}
?> 
expecting result should be:
This
is
a
test
but it's not.
Though there is other solution to this problem still,
str_replace \t\t -> \t 
or using explode

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-10-01 15:57 UTC] hholzgra@php.net
We are sorry, but can not support PHP 3 related problems anymore.
Momentum is gathering for PHP 5, and we think supporting PHP 3 will
lead to a waste of resources which we want to put into getting PHP 5
ready. Ofcourse PHP 4 will will continue to be supported for the
forseeable future.

works in php 4
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 09:01:27 2024 UTC