|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-05-13 14:45 UTC] felipe@php.net
-Package: PECL
+Package: SPL_Types
[2014-07-02 21:06 UTC] tobihille at gmail dot com
[2017-01-10 08:14 UTC] kalle@php.net
-Status: Open
+Status: Suspended
[2017-01-10 08:14 UTC] kalle@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 15:00:01 2025 UTC |
Description: ------------ My feature request is to have support for string functions inside a php SplString so it's normalized under this object and that it can be made easy to manipulate strings. A few examples in PHP $b = new SplString("A String"); $a = $b->replace("A", "The"); // $a == "The String" , $b == "A String" $a->replace("The", "Thy"); print $a // $a == "Thy String"); print $a->substr(0, 3); // "Thy " print $a->indexOf("T"); // 0