php如何判断字母大小写

2025-03-10 06:16:10
推荐回答(1个)
回答1:

    $helllo="B";
    if(/*怎么判断大小写?*/){
        echo "大写字母";
    }else{
        echo "小写字母";
    }
?>