PHP 缩短文本而不用制动词

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 缩短文本而不用制动词相关的知识,希望对你有一定的参考价值。

/*
returns text limited by a specified length of characters but keeping words intact. the final character count will not be exact since it is affected by the possible removing of the a long word or by the addition of the ellipsis.
	
paramaters: 
	string - the input string
	chars - the length of characters wanted
	elli - the ellipsis to be used, defaults to '...'
*/

function shorten($string='', $chars=20, $elli='...'){
	list($new_string, $elli)= explode("\n", wordwrap($string, $chars, "\n", false));
	return  ( $elli ) ? $new_string.'...' : $new_string;
}

以上是关于PHP 缩短文本而不用制动词的主要内容,如果未能解决你的问题,请参考以下文章

php 缩短内容文本,修剪内容

PHP 在文本中查找URL并缩短它们

自动驾驶技术之——防抱死制动系统(ABS)与EBD系统(PPT)

PHP 缩短文字而不削减文字

缩短链接上的 URL 文本,如 ***?

如何将php中的文本保存为pdf文件?