"Angela" <angela@adjingo.com> schreef in bericht
news:QeGLi.34982$nO3.27264@edtnps90...
> Hello
>
> Is there a simple way to determine if a string is all in uppercase
> characters?
>
>
> Thanks
if ($string == strtoupper($string))
echo "It's all uppercase!";