php-8.0.30-src/ext/opcache/tests/opt/sccp_in_array.phpt

15 lines
215 B
PHP

--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)