📌  相关文章
📜  PHP 中的多字节字符串输入转换处于活动状态,必须禁用 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:20.653000             🧑  作者: Mango

代码示例1
You can edit your site's .htaccess file or settings.php file to do so.
This way there will not be any conflict between your site and your
drush configuration. And in case you changed your server's php version
in the future, you don't have to re-do the same changes to the new 
php version's php.ini file.
  
Via .htaccess:(put these two lines inside .htaccess file)
php_value mbstring.http_input pass
php_value mbstring.http_output pass

Via settings.php
ini_set('mbstring.http_input', 'pass');
ini_set('mbstring.http_output', 'pass');