Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 150 Bytes

InvalidArrayAccess.md

File metadata and controls

10 lines (7 loc) · 150 Bytes

InvalidArrayAccess

Emitted when attempting to access an array offset on a value that does not permit it

<?php

$arr = 5;
echo $arr[0];