hi John
> Me thinks that was what I used.
> http://ca.php.net/strstr
> http://ca.php.net/stristr
> http://ca.php.net/strpos
> What's the difference?
the ones ending 'pos' just return an integer position. The 'i' in these
string manipulation functions generally means that the function is
case-i
Me thinks that was what I used.
http://ca.php.net/strstr
http://ca.php.net/stristr
http://ca.php.net/strpos
What's the difference? Other than
"*Note: * If you only want to determine if a particular needle
occurs within haystack, use the faster and less memory intensive
function *strpos()
Jasper Bryant-Greene wrote:
John Taylor-Johnston wrote:
Humour me. I knew how to do this. I want to parse $searchenquiry and
see if it contains "searchenquiry=".
$yourAnswer = ( strpos( $searchenquiry, 'searchenquiry=' ) !== false );
Thanks,
John
--
PHP General Mailing List (http://www.p
John Taylor-Johnston wrote:
Humour me. I knew how to do this. I want to parse $searchenquiry and see
if it contains "searchenquiry=".
$yourAnswer = ( strpos( $searchenquiry, 'searchenquiry=' ) !== false );
--
Jasper Bryant-Greene
Freelance web developer
http://jasper.bryant-greene.name/
--
PH
$pos = strpos($varone, 'is')
if ($pos === false) { /*not found */ }
- Original Message -
From: "Jamie Saunders" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: 2001. május 6. 16:58
Subject: [PHP] if string contains...
> Hi,
>
> I want to check whether a string contains a certain word
http://php.net/manual/en/function.strstr.php
$varOne = "is";
$varTwo = "this is a string";
if(strstr($varTwo,$varOne)) {
echo "true.";
} else {
echo "false.";
}
Regards,
@lvin
At 03:58 PM 5/6/01 +0100, Jamie Saunders wrote:
>Hi,
>
>I want to check whether a string contains a certain word e.g.
>
6 matches
Mail list logo