With substr() you can omit the third parameter to get the whole rest of the string:
substr('abcdefg', 2) // returns "cdefg"
You can't do the same with mb_substr():
mb_substr('abcdefg', 2, null, 'UTF-8'); // returns empty string
I only found weird and ugly solutions.
Setting a very high number as length:
$a = mb_substr('abcdefg', 2, 9999999999, 'UTF-8');Calculating the number:
$a = mb_substr('abcdefg', 2, mb_strlen('abcdefg', 'UTF-8') - 2, 'UTF-8');Omitting the charset parameter by using
mb_internal_encoding():$temp = mb_internal_encoding(); // prevent action at a distance
mb_internal_encoding('UTF-8');
$a = mb_substr('abcdefg', 2);
mb_internal_encoding($temp);
Isn't there a real solution?
mb_substr('abcdefg', 2, null, 'UTF-8')does not accomplish what you want in scenarios where you are required to provide the final (encoding) optional argument. – ficuscr Dec 20 '12 at 20:57-1instead ofNULLin older versions. – ficuscr Dec 20 '12 at 21:02