mb_convert_encoding error: Call to undefined function mb_convert_encoding()

后端 未结 2 702
-上瘾入骨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:39

    You need to install the extension. It depends on of your operating system, here are some examples:

    sudo apt-get install php-mbstring  # Debian, Ubuntu
    sudo yum install php-mbstring  # RedHat, Fedora, CentOS
    

提交回复
热议问题