YesYo.com MintState Forums
뒤로    YesYo.com MintState BBS > Tech > PHP
검색
멤버이름    오토
비밀번호 
 

첫문자를 대문자, 소문자로 변경하는 함수

페이지 정보

작성자 MintState 댓글 0건 조회 7,005회 작성일 17-08-08 19:35

본문

첫문자를 대문자, 소문자로 변경하는 함수

ucfirst 첫문자를 대문자로
<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>


lcfirst 첫문자를 소문자로
<?php
$foo = 'HelloWorld';
$foo = lcfirst($foo);             // helloWorld

$bar = 'HELLO WORLD!';
$bar = lcfirst($bar);             // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>


ucwords 문장 첫문자를 대문자로
<?php
$foo = 'hello world!';
$foo = ucwords($foo);             // Hello World!

$bar = 'HELLO WORLD!';
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>


<?php
$foo = 'hello|world!';
$bar = ucwords($foo);             // Hello|world!

$baz = ucwords($foo, "|");        // Hello|World!
?>

댓글목록

등록된 댓글이 없습니다.

Total 165건 1 페이지
PHP 목록
번호 제목 글쓴이 조회 날짜
165 MintState 5391 05-17
164 MintState 6114 05-11
163 MintState 6242 04-05
162 MintState 6392 04-03
열람중 MintState 7006 08-08
160 MintState 7019 02-22
159 MintState 7962 05-29
158 MintState 8240 01-18
157 MintState 8393 02-21
156 MintState 9291 12-08
155 MintState 9811 10-29
154 MintState 10269 07-31
153 MintState 10333 11-03
152 MintState 10440 11-03
151 MintState 10514 10-29
150 MintState 10596 10-29
149 MintState 10805 10-31
148 MintState 10898 10-29
147 MintState 10995 10-29
146 MintState 11094 10-29
145 MintState 11164 10-31
144 MintState 11245 11-03
143 MintState 11329 11-03
142 MintState 11403 11-10
141 MintState 11454 11-10
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2024, YesYo.com MintState. ™