PHP 在Word Break中截断文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在Word Break中截断文本相关的知识,希望对你有一定的参考价值。

// 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, ' ');

以上是关于PHP 在Word Break中截断文本的主要内容,如果未能解决你的问题,请参考以下文章

CSS学习-文本换行符

css之word-wrap和word-break的区别

截断PHP返回的文本

span元素文字自动换行

在DIV中自己主动换行

CSS3让文本自动换行——word-break属性