Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有这种可能性,在 php.ini 中的哪里或在哪里更改这些推导的 javascriptom 的编码
简单的问题在于所有站点都是在 utf-8 中推导出来的,并且通过 jquery (ajax) 接收的数据来到 cp-1251
您可以在 php.ini 中启用 UTF8
default_charset = "utf-8"
或者也可以在 PHP 页面中调用带有 UTF8 标头的标头:
header('content-type: text/html; charset: utf-8');