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

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

페이지 정보

작성자 MintState 댓글 0건 조회 7,439회 작성일 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 5885 05-17
164 MintState 6596 05-11
163 MintState 6663 04-05
162 MintState 6798 04-03
161 MintState 8727 01-18
열람중 MintState 7440 08-08
159 MintState 10860 07-31
158 MintState 8388 05-29
157 MintState 7445 02-22
156 MintState 8788 02-21
155 MintState 12738 11-12
154 MintState 9864 12-08
153 MintState 13626 02-26
152 MintState 17881 01-22
151 MintState 12115 07-27
150 MintState 14362 02-10
149 MintState 13723 10-21
148 MintState 17992 05-02
147 MintState 22557 04-18
146 MintState 15325 04-17
145 MintState 15777 04-17
144 MintState 14980 03-14
143 MintState 16696 03-04
142 MintState 17369 01-18
141 MintState 20603 07-02
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2025, Go3.co.kr MintState. ™