mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
631bc81607
Co-authored-by: Dmitry Stogov <dmitry@zend.com> Closes GH-12461
13 lines
202 B
PHP
13 lines
202 B
PHP
--TEST--
|
|
Frameless jmp
|
|
--FILE--
|
|
<?php
|
|
namespace Foo;
|
|
function test($needle, $haystack) {
|
|
return in_array($needle, $haystack, true);
|
|
}
|
|
var_dump(test('foo', ['foo', 'bar']));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|