0
Is There a function for picking specified indexes in a string
I mean you have a string and you you want the characters from position 10 to 20.
1 Answer
+ 2
substr(str, index, length);
manual: http://php.net/manual/fr/function.substr.php
I mean you have a string and you you want the characters from position 10 to 20.