PHP

[PHP] php 대문자/소문자 변환 (strtoupper/strtolower)

chsr 2020. 6. 4. 16:04
728x90
반응형

대문자 변환

strtoupper()

$tmp = "test" ; 
$tmp = strtoupper($tmp);

echo $tmp;	// TEST

● 소문자 변환

strtolower()

$tmp = "TEST" ; 
$tmp = strtolower($tmp);

echo $tmp;	// test

첫글자만 대문자로 변환 

ucfirst() 

$tmp = "test";
$tmp = ucfirst($tmp);

echo $tmp;	// Test

각 단어의 첫글자만 대문자로 변환 

ucwords() 

$tmp = "test test test";
$tmp = ucwords($tmp);

echo $tmp;	// Test Test Test
728x90
반응형