Re: strpos question
- From: Kimmo Laine <spam@xxxxxxxxxxxxx>
- Date: Thu, 29 Jun 2006 18:23:05 +0300
drec kirjoitti:
I am trying to right an if statment using strpos to determine if the
string exists in the variable, however I seem to be getting the wrong
effect. Here is my script.
<?php
$dn = "ABC-DEF";
$pos = strpos( $dn, "ABC-DEF" );
if ( $pos != FALSE )
{
echo 'variable contains value';
}
else
{
echo ' variable does not contain value' ;
}
?>
It keeps returning does not contain value. I am kinda new to strpos,
any suggestions?
RTFM: http://php.net/strpos
Strpos returns the position of $haystack where $needle begins, otherwise false if $needle is not found. In this case, the position is zero. When you compare integer value zero with boolean value false in loose typed language, they match. If you want to strictly compare and distinguish the difference between boolean false and integer zero, you need to use strict comparison operators.
Use:
if ( $pos !== FALSE )
!== is the type specific strict comparison operator, which checks also for variable types as well as values. Then, when you compare boolean false to integer zero, they do not match, but false and false will.
This is all explained in the manual if you'd just care to Read The Fine Manual.
--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
spam@xxxxxxxxxxxxx | Gedoon-S @ IRCnet | rot13(xvzzb@xxxxxxxxxxxxx)
.
- References:
- strpos question
- From: drec
- strpos question
- Prev by Date: Re: strpos question
- Next by Date: Re: Display server error
- Previous by thread: Re: strpos question
- Next by thread: My "FreeType Support" compilation doesn't work
- Index(es):