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<->MySQL 接続文字セットを設定してみてください。
古い MySQL API を使用している場合は、mysql_set_charset('utf8_unicode_ci')( more ) を使用します。 MySQLi API を使用する場合は、$mysqli->set_charset('utf8_unicode_ci')( more ) を使用します。
mysql_set_charset('utf8_unicode_ci')
$mysqli->set_charset('utf8_unicode_ci')
また、それが機能することもわかりました$mysqli->query('utf8')(here)...
$mysqli->query('utf8')