Posted by Greg Donald on 10/10/05 16:28
On 10/10/05, zzapper <david@tvis.co.uk> wrote:
> Image that there could be a string
>
> fred
> Fred
> FRED
>
> First of all I need to know that these are same which I can do with strtolower,
> but how could I tell
$a = array( 'fred', 'Fred', 'FRED' );
sort( $a );
echo $a[ 0 ];
--
Greg Donald
Zend Certified Engineer
MySQL Core Certification
http://destiney.com/
[Back to original message]
|