php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #26916 docs for substr("", 0, 0) is not clear
Submitted: 2004-01-15 06:16 UTC Modified: 2004-01-15 10:01 UTC
From: csongibacsi at nexum dot hu Assigned:
Status: Not a bug Package: Feature/Change Request
PHP Version: 4.3.4 OS: Linux video 2.4.18-bf2.4 #1 Son
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
40 + 1 = ?
Subscribe to this entry?

 
 [2004-01-15 06:16 UTC] csongibacsi at nexum dot hu
Description:
------------
The real behaviour is different from the one which is described in the docs. 

The docs says: "If string is less than start characters long, FALSE will be returned." In the case of the parameters described below, the string "abc" is not less than 3 characters long so it should NOT give back FALSE, but it gives. 

Reproduce code:
---------------
  var_dump( substr( "abc", 3, 0 ) );


Expected result:
----------------
  string(0) "" 



Actual result:
--------------
  bool(false)


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-01-15 06:57 UTC] eru@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

Ehm the string \"abc\" has no [3], we start counting at 0.

\"If start is non-negative, the returned string will start at the start\'th position in string, counting from zero.\"

 [2004-01-15 10:01 UTC] csongibacsi at nexum dot hu
Well, it's OK, the characters are counted from 0, but the sentence below is not true:
"If string is less than start characters long, FALSE will
be returned."
The true version should be:
"False is returned if string is less OR EQUAL than start characters long." Shouldn't it?
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 01:01:28 2024 UTC