RE: [PHP] case insenstive

2002-03-07 Thread Kearns, Terry

Just substitute strstr() with stristr()

The extra I in stristr() stands for "Insensitive".

If I was insensitive, I would say RTFM >:)

If you look under http://www.php.net/manual/en/function.strstr.php
It tells you about stristr


[TK] 

> -Original Message-
> From: jtjohnston [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, 5 March 2002 5:08 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] case insenstive
> 
> 
> I need to make this case insensitive. This seems like over kill?
> 
>  if((substr($author, 0, 1) == "a") or (substr($author, 0, 1) 
> == "a")) { }
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] case insenstive

2002-03-04 Thread Frank


if ($author[0]=='a' || $author[0]=='A')
{
...
}

or (much slower)

if (strtolower($author[0])=='a')
{
...
}


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] case insenstive

2002-03-04 Thread Kevin Stone

Use strtolower() or strtoupper() to change the case of a string.
And yes doing the same thing twice in the same statement is overkill!  :)
if((substr(strtolower($author), 0, 1) == "a") ||
(substr(strtolower($author), 0, 1) == "a")){}


- Original Message -
From: "jtjohnston" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, March 04, 2002 11:08 PM
Subject: [PHP] case insenstive


> I need to make this case insensitive. This seems like over kill?
>
>  if((substr($author, 0, 1) == "a") or (substr($author, 0, 1) == "a"))
> {
> }
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] case insenstive

2002-03-04 Thread Niklas Lampén

if (eregi("^a", $author))
{
print "blah!";
}


Niklas

-Original Message-
From: jtjohnston [mailto:[EMAIL PROTECTED]] 
Sent: 5. maaliskuuta 2002 8:08
To: [EMAIL PROTECTED]
Subject: [PHP] case insenstive


I need to make this case insensitive. This seems like over kill?

 if((substr($author, 0, 1) == "a") or (substr($author, 0, 1) == "a")) {
}


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] case insenstive

2002-03-04 Thread Jason Murray

> I need to make this case insensitive. This seems like over kill?
> 
> if((substr($author, 0, 1) == "a") or (substr($author, 0, 1) == "a"))
> {
> }

if((strtolower(substr($author, 0, 1)) == "a")
{
}

:)

J

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php