携帯開発の時のphp.iniの設定

携帯で絵文字を使うときは、POST、GETを自動で変換しないために

mbstring.encoding_translation = off
mbstring.http_input = pass
mbstring.http_output = pass

としないといけない。

.htaccess

php_value mbstring.encoding_translation = off
php_value mbstring.http_input = pass
php_value mbstring.http_output = pass

としておけばいいのかな。