Skip to content

Instantly share code, notes, and snippets.

@AlexH-HankIT
AlexH-HankIT / array_find.php
Last active August 29, 2015 14:27 — forked from branneman/gist:951847
array_find() - A case insensitive array_search() with partial matches
<?php
/**
* Case in-sensitive array_search() with partial matches
*
* @param string $needle The string to search for.
* @param array $haystack The array to search in.
*
* @author Bran van der Meer <[email protected]>
* @since 29-01-2010
*/