PHP のバージョンを上げた時に FastCGI sent in stderr: “PHP message: PHP Fatal error: Array and string offset access syntax with curly braces is no longer supported というエラーが出た時の対応

PHP のバージョンを上げた時に下記エラーが発生した。

FastCGI sent in stderr: "PHP message: PHP Fatal error:
Array and string offset access syntax with curly braces is no longer supported

修正箇所

下記のような箇所を、

$arr{0}

$arr[0]

のように変更する。