Fatal error: Call to undefined function mb_substr()

前端 未结 4 1728
囚心锁ツ
囚心锁ツ 2021-02-12 19:32

I wanted to see your input on this concern I\'m currently experiencing. It turns out that:

 

        
4条回答
  •  孤街浪徒
    2021-02-12 19:52

    The error is telling you that you are trying to use a function named mb_substr that doesn't exist.

    Perhaps you can achieve the same result using the substr function http://php.net/manual/en/function.substr.php instead. substr(strip_tags($disc_t), 0, 10) will return the first ten characters of the result of strip_tags($disc_t) .

提交回复
热议问题