121
這裡允許您檢視這個會員的所有文章。請注意, 您只能看見您有權限閱讀的文章。
稍微問一下
會是因為win的32bit os or 64 bit os而有所差異嗎?
沒研究過win的檔案結構,這方面不是很清楚
PHP is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly.
我是用busybox的ps指令看的,
wchar_t ws[3];
char s[256];
ws[0] = (wchar_t)20013;
ws[1] = (wchar_t)25991;
ws[2] = 0;
//wprintf( L"%s\n", ws );
WideCharToMultiByte( CP_OEMCP, 0, ws, -1, s, 256, NULL, FALSE );
printf( "%s\n", s );
return 0;