龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

PHP在字符断点处截断文字

时间:2014-06-14 02:37来源:网络整理 作者:网络 点击:
分享到:
PHP在字符断点处截断文字 [代码片段(18行)]
// Original PHP code by Chirp Internet: www.chirp.com.au
 // Please acknowledge use of this code by including this header.
 function myTruncate($string, $limit, $break=".", $pad="...") {
 // return with no change if string is shorter than $limit
 if(strlen($string) <= $limit)
 return $string;

 // is $break present between $limit and the end of the string?
 if(false !== ($breakpoint = strpos($string, $break, $limit))) {
 if($breakpoint < strlen($string) - 1) {
 $string = substr($string, 0, $breakpoint) . $pad;
 }
 }
 return $string;
 }
 /***** Example ****/
 $short_string=myTruncate($long_string, 100, ' '); 
精彩图集

赞助商链接