Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 214 Bytes

PossiblyInvalidArrayOffset.md

File metadata and controls

10 lines (7 loc) · 214 Bytes

PossiblyInvalidArrayOffset

Emitted when it’s possible that the array offset is not applicable to the value you’re trying to access.

<?php

$arr = rand(0, 1) ? ["a" => 5] : "hello";
echo $arr[0];