方法二:
使用函數「ord()
」和「strtoupper()
」進行判斷。
ord()
函數返回字串中第一個字元的 ASCII 值。
strtoupper()
函數把字串轉換為大寫。
範例如下:
<?php $str = 'a'; function checkcase1($str){ $str =ord($str); if($str>64&&$str<91){ echo '大寫字母'; return; } if($str>96&&$str<123){ echo '小寫字母'; return; } echo'不是字母'; } function checkcase2($str){ if(strtoupper($str)===$str){ echo '大寫字母'; }else{ echo '小寫字母'; } } echo checkcase1($str); echo checkcase2($str); ?>
推薦相關文章教學:php教學
以上就是php中如何判斷字母是大寫還是小寫的詳細內容,更多請關注TW511.COM其它相關文章!