ahhhinteresting.
thank you for the clarification
I stand humbled, head bowed...
rick
-Original Message-
From: Andrey Hristov [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 22, 2002 8:03 AM
To: Rick Emery
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] comparisons
>From the docs :
N
MAIL PROTECTED]>; "Rick Emery" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, March 22, 2002 3:58 PM
Subject: RE: [PHP] comparisons
> Andrey, you are incorrect.
>
> From the manual on strpos():
> int strpos (string haystack, string needle [, int offs
AIL PROTECTED]
Subject: Re: [PHP] comparisons
> if (ereg("john",$jeff) ) { }
>
ok
> or:
>
> if( strstr( $jeff, "john") ) { }
>
ok
> or:
>
> if( strpos( $jeff, "john") ) { }
error
if (strpos($jeff, "john") !== FALSE)
Best rega
> if (ereg("john",$jeff) ) { }
>
ok
> or:
>
> if( strstr( $jeff, "john") ) { }
>
ok
> or:
>
> if( strpos( $jeff, "john") ) { }
error
if (strpos($jeff, "john") !== FALSE)
Best regards,
Andrey Hristov
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php
we aims to please...
-Original Message-
From: J W W L (Warwick) Berg [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 22, 2002 7:45 AM
To: 'Rick Emery'
Cc: [EMAIL PROTECTED]
Subject: RE: [PHP] comparisons
Hey thanks Rick
Appreciate it.
Regards..
Warwick Berg
-Origin
if (ereg("john",$jeff) ) { }
or:
if( strstr( $jeff, "john") ) { }
or:
if( strpos( $jeff, "john") ) { }
-Original Message-
From: Warwick Berg [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 22, 2002 6:55 AM
To: [EMAIL PROTECTED]
Subject: [PHP] comparisons
Hi
Just learning php from t
On Monday 12 February 2001 10:41, PHPBeginner.com wrote:
> I'm having a rather strange problem. I'm trying to compare two
> values. "01" and "1". The variables names that they are submitted
> under are pick1 and pick2. i use the following code
[...]
> I still get the error. Anyone have a
try this first:
if((strlen($pick1)==strlen(pick2))and($pick1==$pick2))
echo 'they are equal';
else
echo 'they aren\'t at least in length';
However, it seens to me as a very slicky style ... whay not to make them
somehow different let's say using an array, or having a lette
> that will work, but I prefer
> Can I also write that like the following?
>
> if (!strcmp($pick1,$pick2))
> {
>perform some action;
> }
Thanks. That works for me.
Curtis
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional com
Can I also write that like the following?
if (strcmp($pick1,$pick2) == 0)
{
perform some action;
}
that will work, but I prefer
Can I also write that like the following?
if (!strcmp($pick1,$pick2))
{
perform some action;
}
Cheers
Phil
--
PHP General Mailing List (http://www.php.net
: "Phil Driscoll" <[EMAIL PROTECTED]>
To: "Curtis Maurand" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Sunday, February 11, 2001 2:34 PM
Subject: Re: [PHP] comparisons
> In spite of yor best efforts here, PHP converts the string values to
numbers (because th
In spite of yor best efforts here, PHP converts the string values to numbers (because
the strings look like numbers) before doing the comparison.
Force a string comparison by using strcmp and everything will work fine - remember
that strcmp returns true if the strings are not equal and false if
12 matches
Mail list logo