
strtolower , strtoupper 문자열 모두 소문자 혹은 대문자로 변경
2022. 10. 26. 14:59
웹프로그래밍/PHP
$text = "AbCDEfghIJKLmnOPQRsTUVWXyz"; $newText = strtolower($text); //출력결과 // abcdefghijklmnopqrstuvwxyz $text = "AbCDEfghIJKLmnOPQRsTUVWXyz"; $newText = strtoupper($text); //출력결과 // ABCDEFGHIJKLMNOPQRSTUVWXYZ