<?php
function strstr_array( $haystack, $needle ) {
if ( !is_array( $haystack ) ) {
return false;
}
foreach ( $haystack as $element ) {
if ( strstr( $element, $needle ) ) {
return $element;
}
}
}
function stristr_array( $haystack, $needle ) {
if ( !is_array( $haystack ) ) {
return false;
}
foreach ( $haystack as $element ) {
if ( stristr( $element, $needle ) ) {
return $element;
}
}
}
?>
strstr() and stristr() with Arrays
Leave a Reply
You must be logged in to post a comment.