Skip to content

MIR1210

MixedArrayOffset

An array is indexed with an offset of type mixed.

<?php
/** @param mixed $k */ function f(array $a,$k){ return $a[$k]; }

Narrow the offset to int|string.