[EMAIL PROTECTED] ("Jay Blanchard") writes:
> !== FALSE is not good either, it is not a valid test
>
> strpos returns the numeric position of the first occurrence of needle in
> the haystack string.
Except when needle doesn't occur in string, in which case
"If needle is not found, strpos() will return boolean FALSE."
Checking strpos($foo,$bar) !== False is exactly right; since 0 == False,
you want to use !==, not !=.
-- Tom Swiss / tms(at)infamous.net / www.infamous.net / www.unreasonable.org
"What's so funny about peace, love, and understanding?" - Nick Lowe
"Power to the Peaceful" - Michael Franti
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php