반응형
strtolower(string), strtoupper(string)
문자를 소문자/대문자로 치환
$example = "ABCDEFG";
echo strtolower($example); // abcdefg
$example = 'zxyef';
echo strtoupper($example); // ZXYEF
반응형
문자를 소문자/대문자로 치환
$example = "ABCDEFG";
echo strtolower($example); // abcdefg
$example = 'zxyef';
echo strtoupper($example); // ZXYEF