Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 175 Bytes

InvalidArrayOffset.md

File metadata and controls

10 lines (7 loc) · 175 Bytes

InvalidArrayOffset

Emitted when attempting to access an array using a value that's not a valid offset for that array

<?php

$a = [5, 20, 18];
echo $a["hello"];