Skip to content

NullArrayAccess

nullの配列値にアクセスしようとした場合に発生します。

<?php
$arr = null;
echo $arr[0];

ユーザーノート