대소문자 변환 함수

프로그래밍/PHP|2015. 1. 27. 11:42
반응형

<?php

$strtoupper = strtoupper("The String"); // 문자열을 대문자로 바꿔줍니다.

$strtolower = strtolower("The String"); // 문자열을 소문자로 바꿔줍니다.

$ucfirst = ucfirst("The String"); // 첫번째 문자만 대문자로 바꿔줍니다.

$ucwords = ucwords("the example string"); // 각 단어의 첫번째 문자를 대문자로 바꿔줍니다.


echo $strtoupper."<br>";

echo $strtolower."<br>";

echo $ucfirst."<br>";

echo $ucwords."<br>";

?>



출력 결과:

THE STRING

the string

The string

The Example String


[출처] 퍼니XE (http://funnyxe.com/webDevTip/17622)

반응형

댓글()