WordPress出错,mb_strimwidth函数出现乱码解决办法 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

Wordpress出错,mb_strimwidth函数出现乱码解决办法 – WordPress 教程
wordpress

目前很多国内主题都在使用下面的函数实现文字截断:

<?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 250,"..."); ?>  

但有时会发出最后的截断处会有乱码产生。

解决办法:

1、开启mb_string extension

如果你是自己的服务器,可以更改apache配置,可以将mb_string extension设置为on。

2、设置字符集

将代码加上UTF-8参数,代码就变成了:

<?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 250,"...",'utf-8'); ?>  

这样就解决了这个WordPress中mb_strimwidth函数中文截断产生乱码的问题。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: