Skip to content

Instantly share code, notes, and snippets.

@Neolot
Last active October 12, 2015 03:28
Show Gist options
  • Select an option

  • Save Neolot/3964367 to your computer and use it in GitHub Desktop.

Select an option

Save Neolot/3964367 to your computer and use it in GitHub Desktop.
PHP Обрезать текст по количеству знаков
function custom_excerpt($string, $limit) {
$string = strip_tags($string);
$count = mb_strlen($string);
if ($count > $limit) {
$string = mb_substr($string, 0, mb_strpos($string, " ", $limit)).' ...';
}
return $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment