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.
文字列がコードページ1250に準拠しているかどうかを確認する必要があります。
MySQLに書き込んで、次のようなチェックを行うことができます。
select id,name from test where name <> CONVERT(name USING cp1250);
準拠していない文字列が見つかります。
どういうわけかPHPで同じことができますか?
これを試して。
mb_convert_case($name, MB_CASE_LOWER, "Windows-1251")
または多分
mb_convert_encoding($name,"Windows-1251")