PHPプログラムに関する各種メモ書き

PHP 7.4 や 8 で出るエラー「Array and string offset access syntax with curly braces is no longer supported」の修正

次はエラーとなります。

echo $information->img_html_name_{$column_index};

↓ このように修正します

echo $information->{"img_html_name_".$column_index};
No.2480
03/06 15:11

edit