1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linux(CUI)上でShift-JISのphpファイルをutf8に変換

Last updated at Posted at 2015-06-20

teratermの設定(Setup>terminal)をSJISに変更しても文字化けが直らない…。
sjisでファイルをサーバに置いた人を恨みつつutf8に変換します(・ω・`)sjisキライ…

まずはファイルの文字コードを確認

shell
nkf –-guess file.php

実行結果がshift JISだったら次へ

utf8に変換

shell
nkf -Sw file.php > file.php.utf8

file.php.utf8が文字コードutf8で生成されます。

ちなみに、オプションの意味は

-S ファイルの文字コードがShiftJISだと仮定する
-w UTF-8に変換する

ちなみに、直接file.phpを上書きしたいってときは

shell
nkf -Sw --overwrite file.php

overwriteオプション使います。
直接上書きするとバックアップが取れないのでお勧めはしません…。

以上!

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?