mb_convert_encoding error: Call to undefined function mb_convert_encoding()

后端 未结 2 700
-上瘾入骨i
-上瘾入骨i 2021-01-11 14:18

I am currently writing a PHP function but when the complete script is executed I am getting an error:

Error:

Call to undefined function mb_convert_en         


        
2条回答
  •  礼貌的吻别
    2021-01-11 14:34

    On Windows, uncomment the following line in php.ini, and restart the Apache server:

    extension=mbstring
    

    If you still get the error afterwards, make sure that what you see is not cached response.

提交回复
热议问题