限制php中的文本长度并提供“阅读更多”链接

限制php中的文本长度并提供“阅读更多”链接,第1张

限制php中的文本长度并提供“阅读更多”链接

这是我用的:

// strip tags to avoid breaking any html$string = strip_tags($string);if (strlen($string) > 500) {    // truncate string    $stringCut = substr($string, 0, 500);    $endPoint = strrpos($stringCut, ' ');    //if the string doesn't contain any space then it will cut without word basis.    $string = $endPoint? substr($stringCut, 0, $endPoint) : substr($stringCut, 0);    $string .= '... <a href="/this/story">Read More</a>';}echo $string;

您可以对其进行进一步调整,但可以在生产中完成工作。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621565.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存