3v4l.org

run code in 300+ PHP versions simultaneously
<?php $listing = [ [ "sku,qty,is_in_stock" ], [ "EBCDAA014MAS34B,149.000000,1" ] ]; function array_find($needle, array $haystack) { foreach ($haystack as $key => $value) { if (false !== stripos($value[0], $needle)) { return $key; } } return false; } $hello = array_find('EBCDAA014MAS34B', $listing); echo $hello; echo PHP_EOL; $test = array_find('QEBCDAA014MAS34B', $listing); var_dump($test);

preferences:
36.99 ms | 406 KiB | 5 Q