gpt4 book ai didi

php - 为 php 页面强制使用 utf-8 编码

转载 作者:行者123 更新时间:2023-12-04 15:52:49 25 4
gpt4 key购买 nike

我有一个 VPS(Debian、Apache、MySQL、PHP)

我想强制使用 UTF-8 编码。我已经把这一行:

header('Content-type: application/json; charset: UTF-8');

但是字符集还是ISO8859

我还编辑了 php.ini :/etc/php5/apache2/php.ini

mbstring.language=UTF-8
mbstring.internal_encoding= UTF-8
mbstring.http_input=UTF-8
mbstring.http_output=UTF-8
mbstring.detect_order= auto

和 apache conf :

nano /etc/apache2/conf.d/charset
AddDefaultCharset UTF-8

iOS 应用程序正在调用我的 php 页面。我给它一个 JSON 输出。但它接收 ISO 字符集...

最佳答案

您的响应 header 不正确:

header('Content-type: application/json; charset: UTF-8');

应该是:

header('Content-type: application/json; charset=UTF-8');

注意 = 代替 :

关于php - 为 php 页面强制使用 utf-8 编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10761192/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com