目前我使用这个脚本:
$tstring = strip_tags($nstitle);
if (strlen($tstring) > 65) {
// truncate string
$stringCut = substr($tstring, 0, 65);
// make sure it ends in a word so assassinate doesn't become ass...
$tstring = substr($stringCut, 0, strrpos($stringCut, ' ')).
'.....<a href="">read more</a>';
}
如果我键入两行并将其用于剪切字符串,有时这将无法正常工作。但它给出了不同的结果,例如,在每行长度不同的情况下获得输出。如果全部相同,我想要所有行的长度相同。