Source Code:
(back to article)
<?php // multibyte strings echo mb_substr('եիաև', 1, 3); // իաև echo mb_substr('եիաև', 0, 4); // եիաև echo mb_substr('եիաև', 1); // իաև ?>
Result:
Report an issue