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

PHP function to display limited words from a string.

时间:2014-07-10 02:13来源:网络整理 作者:网络 点击:
分享到:
PHP function to display limited words from a string. [代码片段(15行)]
function words_limit( $str, $num, $append_str='' ){
$words = preg_split( '/[\\s]+/', $str, -1, PREG_SPLIT_OFFSET_CAPTURE );
 if( isset($words[$num][1]) ){
   $str = substr( $str, 0, $words[$num][1] ).$append_str;
 }
unset( $words, $num );
return trim( $str );>
}

echo words_limit($yourString, 50,'...'); 

or

echo words_limit($yourString, 50);
//该片段来自于http://outofmemory.cn
精彩图集

赞助商链接