|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-07-20 05:11 UTC] lonnyk at gmail dot com
[2011-07-20 05:12 UTC] lonnyk at gmail dot com
[2011-07-20 05:24 UTC] netmosfera at gmail dot com
[2011-07-22 04:41 UTC] cataphract@php.net
-Status: Open
+Status: Bogus
[2011-07-22 04:41 UTC] cataphract@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 11:00:01 2025 UTC |
Description: ------------ hi, it is possible to make mb_substr work exactly like substr? substr("",0,10) // returns false mb_substr("",0,10) // returns "" substr("abc",7,1) // returns false mb_substr("abc",7,1) // returns "" thank you