修剪字符串中的额外字符(截断字符串)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修剪字符串中的额外字符(截断字符串)相关的知识,希望对你有一定的参考价值。
If a string exceeds x characters (defaults to 100), trims the string to the first x characters and appends a tail to the end of the truncated string (defaults to an ellipsis).
function trimExtraChars($string, $max = 100, $tail = '...') { } return $string; }
以上是关于修剪字符串中的额外字符(截断字符串)的主要内容,如果未能解决你的问题,请参考以下文章