Created
August 6, 2012 09:13
-
-
Save dynamicguy/3272470 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
if ( ! function_exists('ellipsize')) | |
{ | |
/** | |
* Ellipsize String | |
* | |
* This function will strip tags from a string, split it at its max_length and ellipsize | |
* | |
* @param string string to ellipsize | |
* @param int max length of string | |
* @param mixed int (1|0) or float, .5, .2, etc for position to split | |
* @param string ellipsis ; Default '...' | |
* @return string ellipsized string | |
*/ | |
function ellipsize($str, $max_length, $position = 1, $ellipsis = '…') | |
{ | |
// Strip tags | |
$str = trim(strip_tags($str)); | |
// Is the string long enough to ellipsize? | |
if (strlen($str) <= $max_length) | |
{ | |
return $str; | |
} | |
$beg = substr($str, 0, floor($max_length * $position)); | |
$position = ($position > 1) ? 1 : $position; | |
if ($position === 1) | |
{ | |
$end = substr($str, 0, -($max_length - strlen($beg))); | |
} | |
else | |
{ | |
$end = substr($str, -($max_length - strlen($beg))); | |
} | |
return $beg.$ellipsis.$end; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment