Skip to content

Instantly share code, notes, and snippets.

@pixelbart
Last active November 6, 2015 16:50
Show Gist options
  • Save pixelbart/acaa1ba8ad8d000b9f8f to your computer and use it in GitHub Desktop.
Save pixelbart/acaa1ba8ad8d000b9f8f to your computer and use it in GitHub Desktop.
Text shortener
<?php
/**
* Text Shortener
*/
function shortText($string, $lenght)
{
if(strlen($string) > $lenght) {
$string = substr($string, 0, $lenght)."...";
$string_end = strrchr($string, " ");
$string = str_replace($string_end, " ...", $string);
}
return $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment