Quick Search:
 
 PHP Code: Search array elements for a substring Jump to:  
Category: >> PHP Code >> Search array elements for a substring  

<< lastnext >>

Snippet Name: Search array elements for a substring

Description: Searches all array elements for a given substring. This function will return an array of the found key=>value pairs, or FALSE if the substring was not found.

Also see:
» Read GET URL Variables Into An Associa...
» Search and Replace On Every Field In E...
» Array of all US states
» Search array elements for a substring
» Create a drop down menu from an array ...
» Search All Words Of A String In mySQL
» Unset unkown array element
» SUBSTR (SubString)
» Parse RSS into array
» Quickly sort associative arrays
» Recursively traverse array
» Combining three arrays into one
» Combining two arrays into one
» Check if array is associative
» Update MySQL Table Using An Array
» Finding a substring in a string
» PHP to JavaScript Array
» Unique Array function
» Pick Randomly from Array
» HEX to RGB array
» oci_bind_array_by_name() example
» Get All Files into an Array
» Filter Empty Array Elements

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

FUNCTION substr_in_array($haystack, $needle){
 
  $found = ARRAY();
 
	// cast to array 
    $needle = (ARRAY) $needle;
 
    // map with preg_quote 
    $needle = ARRAY_MAP('preg_quote', $needle);
 
    // loop over  array to get the search pattern 
    FOREACH ($needle AS $pattern)
    {
        IF (COUNT($found = PREG_GREP("/$pattern/", $haystack)) > 0) {
        	RETURN $found;
        }
    }
 
    // if not found 
    RETURN FALSE;
}


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2025 psoug.org