Skip to content

PossiblyNullArrayAssignment

nullの可能性のある配列に値を設定しようとした場合に発生します。

<?php
$a = null;
$a[0][] = 1;

ユーザーノート