RE: [PHP] if string contains

2005-09-29 Thread Rob Agar
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

Re: [PHP] if string contains

2005-09-29 Thread John Taylor-Johnston
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()

Re: [PHP] if string contains

2005-09-29 Thread John Taylor-Johnston
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

Re: [PHP] if string contains

2005-09-29 Thread Jasper Bryant-Greene
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

Re: [PHP] if string contains...

2001-05-06 Thread Gyozo Papp
$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

Re: [PHP] if string contains...

2001-05-06 Thread Alvin Tan
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. >