http://www.php.net/manual/en/function.in-array.php
Can't find the ���# $needle in my $haystack. Why? :p
(It is a serious example :)
<?php
$needle = "Ten things I hate about you";
if(in_array($needle, $haystack)) {
echo "Found it";
}else{
echo "Not there";
}
$haystack = array ("Ten Things I Hate About You",
"10 Things I Hate About You",
"Ten things I hate about you",
"10 things I hate about you",
"Ten Things That I Hate About You",
"10 Things That I Hate About You",
"Ten things that I hate about you",
"10 things that I hate about you",
"ten things I hate about you");
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php