我做了这个函数来限制输出中字符串的长度,
/* limit the lenght of the string */
function limit_length($content, $limit)
{
# strip all the html tags in the content
$output = strip_tags($content);
# count the length of the content
$length = strlen($output);
# check if the length of the content is more than the limit
if ($length > $limit)
{
# limit the length of the content in the output
$output = substr($output,0,$limit);
$last_space = strrpos($output, ' ');
# add dots at the end of the output
$output = substr($output, 0, $last_space).'...';
}
# return the result
return $output;
}
它工作正常,但我认为它并不完美......例如,我在字符串中有这个文本,
Gender Equality; Radicalisation; Good Governance, Democracy and Human Rights;
这就是我使用该功能的方式,
echo limit_length($item['pg_description'], 20);
然后它返回,
Gender Equality;...
;...
当你想告诉人们内容/行中有更多文本时,它看起来并不好。
我在想是否可以使用正则表达式来检查是否存在任何标点符号,...
然后将其删除。
是否可以?我如何编写表达式来改进我的功能,以便有点“防弹”?
谢谢。