xref: /php-src/ext/opcache/tests/jit/inc_020.phpt (revision c16ad918)
1--TEST--
2JIT INC: 020
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.protect_memory=1
8;opcache.jit_debug=257
9--EXTENSIONS--
10opcache
11--FILE--
12<?php
13function foo($row) {
14    foreach ($row as $key => $value) {
15        if (is_int($key)) {
16            $key++;
17        }
18        if (isset($row[$key])) {
19            return false;
20        }
21    }
22    return true;
23}
24?>
25OK
26--EXPECT--
27OK