Created
August 10, 2018 10:59
-
-
Save greatsami/39bed74be1fd566e84dd3fd4ad22e678 to your computer and use it in GitHub Desktop.
Revisions
-
greatsami created this gist
Aug 10, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ <?php function word_limiter($str, $limit = 100, $end_char = '…'){ $str2 = strip_tags($str); //$str2 = $str; if (trim($str2) == ''){ return $str2; } preg_match('/^\s*+(?:\S++\s*+){1,'.(int) $limit.'}/', $str2, $matches); if (strlen($str2) == strlen($matches[0])){ $end_char = ''; } return rtrim($matches[0]).$end_char; }