Changes between Initial Version and Version 5 of Ticket #488
- Timestamp:
- 2010/01/22 16:28:27 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #488
- Property Owner changed from somebody to nanasess
- Property Status changed from new to assigned
- Property Milestone changed from EC-CUBE2.4.1 to EC-CUBE2.4.2
-
Ticket #488 – Description
initial v5 5 5 (※POSTされる値によってエラーとなる場合がある) 6 6 7 {{{ 7 8 [nativecode=ERROR: invalid byte sequence for encoding "EUC_JP": 0x8250 8 9 HINT: This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by "client_encoding".] 10 }}} 9 11 10 [解決策] 12 === 解決策 === 11 13 // 検索語がUTF-8じゃなかったら、強制的にUTF-8にする 14 {{{ 12 15 $encode = mb_detect_encoding($_POST['name']); 13 16 if( CHAR_CODE != $encode ){ 14 17 $name = mb_convert_encoding($_POST['name'], "UTF-8", "auto"); 15 18 } 19 }}}
