|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-07-06 18:07 UTC] ab@php.net
-Assigned To:
+Assigned To: ab
[2016-07-11 13:14 UTC] ab@php.net
-Status: Assigned
+Status: Verified
[2016-07-11 13:14 UTC] ab@php.net
[2016-12-14 02:33 UTC] ab@php.net
-Status: Verified
+Status: Feedback
[2016-12-14 02:33 UTC] ab@php.net
[2016-12-16 22:11 UTC] ab@php.net
[2016-12-18 00:15 UTC] ab@php.net
-Status: Feedback
+Status: Closed
[2016-12-18 00:15 UTC] ab@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ echo '日本語'; (cp932) with ini_set('default_charset', 'CP932'); => result 日日本本語語 Test script: --------------- C:\php-7.1.0alpha2-Win32-VC14-x64>chcp 現在のコード ページ: 932 C:\php-7.1.0alpha2-Win32-VC14-x64>type php.ini | findstr "^default_charset" default_charset = "UTF-8" C:\php-7.1.0alpha2-Win32-VC14-x64>type iniset.php <?php ini_set('default_charset', 'CP932'); echo '日本語', PHP_EOL; /* vim:set fenc=cp932 ff=dos: */ C:\php-7.1.0alpha2-Win32-VC14-x64>php iniset.php 日日本本語語 C:\php-7.1.0alpha2-Win32-VC14-x64>