LoginSignup
4
2

More than 3 years have passed since last update.

LaravelのCollectionのtoJsonの日本語の文字化けを食い止める。

Posted at

解決方法

内部実装を覗くと引数がjson_encodeのオプションになっているのでそこにPHPの定数、JSON_UNESCAPED_UNICODEを渡すだけ。

$collection->toJson(JSON_UNESCAPED_UNICODE);

終わり。

4
2
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
4
2