$arr = array(1, 2, 3); foreach ($arr as &$value) { // Noncompliant; $value is still alive after the loop and references the last item of the array: $arr[2] ...
確定! 回上一頁