Created
September 25, 2012 07:51
-
-
Save glagola/3780512 to your computer and use it in GitHub Desktop.
Обрезает строку по длине, не разрезая слова. Корректно работает с UTF-8.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function smartCut($str, $len, $enc = 'UTF-8') { | |
return (mb_strlen($str, $enc) > $len) ? mb_substr($str, 0, mb_strpos($str, ' ', $len, $enc), $enc) : $str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment