1--TEST-- 2Frameless jmp 3--FILE-- 4<?php 5namespace Foo; 6function test($needle, $haystack) { 7 return in_array($needle, $haystack, true); 8} 9var_dump(test('foo', ['foo', 'bar'])); 10?> 11--EXPECT-- 12bool(true) 13