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]
のように変更する。
日々の積み重ねを書き溜めています
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]
のように変更する。