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"
または、UTF8ヘッダーを使用してPHPページのヘッダーとも呼ばれます。
header('content-type:text / html; charset:utf-8');