0

I want to convert from :

a12b89 to A12B89.

I tried with strtoupper but it's not working. Is that function only if I have letters without numbers? Thanks.

4

1 回答 1

0
$a = "a12b89";
echo strtoupper($a);
于 2012-07-24T05:11:06.950 回答