summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/opt/sccp_in_array.phpt
blob: e7716b8ad8e91d85add1678f5298fdf9d1fb2eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Don't replace IN_ARRAY result type if the using opcode doesn't support it
--FILE--
<?php

function test($v) {
    $ary = ['x', 'y'];
    var_dump(in_array($v, $ary));
}
test('x');

?>
--EXPECT--
bool(true)