Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 143 Bytes

NullArrayOffset.md

File metadata and controls

10 lines (7 loc) · 143 Bytes

NullArrayOffset

Emitted when trying to access an array offset with null

<?php

$arr = ['' => 5, 'foo' => 1];
echo $arr[null];