Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- SubString
- 쿠키
- 문자열포함여부
- ucfirst
- HTML
- CSS
- 시간계산
- indexOf
- 웹프로그래밍
- Selector
- strtotime
- attr
- input
- 세션사용법
- strpos
- 이전주소
- File
- date포맷
- JQuery
- accept
- php
- 세션
- mb_strimwidth
- element추가
- disabled
- parent of iframe
- Javascript
- mysql
- Meta Tag
- date
Archives
- Today
- Total
Heojju
[PHP] strtolower / strtoupper / ucfirst / ucwords - 문자열 대/소문자로 본문
▤ strtolower(string) : 소문자로
<?php
$str = strtolower("HELLO WORLD");
echo $str; //hello world
?>
▤ strtoupper(string) : 대문자로
<?php
$str = strtoupper("hello world");
echo $str; //HELLO WORLD
?>
▤ ucfirst(string) : 첫 글자만 대문자로. 나머지는 그대로.
<?php
$str1 = ucfirst("hello world");
echo $str1; //Hello world
$str2 = ucfirst("hElLo wORld");
echo $str2; //HElLo wORld
?>
▤ ucwords(stirng) : 각 단어의 첫 글자만 대문자로. 나머지는 그대로.
<?php
$str1 = ucwords("hello world");
echo $str1; //Hello World
$str2 = ucwords("hElLo wORld");
echo $str2; //HElLo WORld
?>
'웹개발 > PHP' 카테고리의 다른 글
[PHP] mb_strimwidth - 문자열자르고 ... 붙이기(말줄임표) (0) | 2017.11.07 |
---|---|
[PHP] txt파일에서 검색하여 글 찾아오기 (0) | 2017.11.06 |
[PHP] date 말일 구하기 (0) | 2017.08.25 |
[PHP] cookie - 쿠키 사용법 (0) | 2017.08.23 |
[PHP] 현재 페이지 url / 이전 페이지 url (0) | 2017.08.18 |