모든 문자열을 대문자, 소문자로 변환하는 함수 > 기술자료 | 해피정닷컴

모든 문자열을 대문자, 소문자로 변환하는 함수 > 기술자료

본문 바로가기

사이트 내 전체검색

모든 문자열을 대문자, 소문자로 변환하는 함수 > 기술자료

PHP 모든 문자열을 대문자, 소문자로 변환하는 함수

페이지 정보


본문

DEMO 페이지 : https://www.happyjung.com/demo/php/lower_upper.php


1. strtolower
모든 문자열을 소문자로 변환하는 함수 (PHP 4, PHP 5)
string strtolower(string $str)

<?php
$str = "To be, or Not To be, That is the Question";
$str = strtolower($str);
print_r("결과 : ".$str);
?>
결과 : to be, or not to be, that is the question


2. mb_strtolower
인코딩할 문자열을 소문자로 변환하는 함수 (PHP 4 >= 4.3.0, PHP 5)
string mb_strtolower(string $str [, string $encoding= 인코딩방식 ] )

<?php
$str = "To be, or Not To be, That is the Question";
$str = mb_strtolower($str, 'UTF-8');
print_r("결과 : ".$str);
?>
결과 : to be, or not to be, that is the question


3. strtoupper
모든 문자열을 대문자로 변환하는 함수  (PHP 4, PHP 5)
string strtoupper( string $string )

<?php 
$str = "To be, or Not To be, That is the Question";
$str = strtoupper($str);
print_r("결과 : ".$str);
?>
결과 : TO BE, OR NOT TO BE, THAT IS THE QUESTION


4. mb_strtoupper
인코딩할 문자열을 대문자로 변환하는 함수 (PHP 4 >= 4.3.0, PHP 5)
string mb_strtoupper(string $str [, string $encoding= 인코딩방식 ] )

<?php 
$str = "To be, or Not To be, That is the Question";
$str = mb_strtoupper($str, 'UTF-8');
print_r("결과 : ".$str);
?>
결과 : TO BE, OR NOT TO BE, THAT IS THE QUESTION


5. mb_convert_case
문자열을 대,소문자로 변환하는 함수  (PHP 4 >= 4.3.0, PHP 5)
string mb_convert_case(string $str , int $mode= MB_CASE_UPPER [, string $encoding= mb_internal_encoding() ] )
   MB_CASE_UPPER 는 대문자로 변환
   MB_CASE_LOWER 는 소문자로 변환
   MB_CASE_TITLE 은 단어 첫글자만 대문자로 변환

<?php 
$str = "To be, or Not To be, That is the Question";
$str = mb_convert_case($str, MB_CASE_UPPER, 'UTF-8');
print_r("결과 : ".$str);
?>
결과 : TO BE, OR NOT TO BE, THAT IS THE QUESTION

<?php 
$str = "TO BE, OR NOT TO BE, THAT IS THE QUESTION";
$str = mb_convert_case($str, MB_CASE_TITLE, 'UTF-8');
print_r("결과 : ".$str);
?>
결과 : To Be, Or Not To Be, That Is The Question



관련자료
http://blog.habonyphp.com/entry/php-모든-문자열을-대문자-소문자로-변환하는-함수#.W1H2tHsVTAQ
http://mwultong.blogspot.com/2007/06/php-uppercase-lowercase-string.html

댓글목록

등록된 댓글이 없습니다.


Total 196건 3 페이지
  • RSS
기술자료 목록
열람
PHP   10324  2018-07-21 00:10 ~ 2018-07-21 03:56  
155
PHP   11713  2018-02-22 02:26  
154
PHP   10470  2018-01-11 15:24 ~ 2018-01-11 16:24  
153
PHP   10526  2017-12-27 18:57  
152
PHP   12316  2017-11-13 01:52 ~ 2018-10-02 21:26  
151
PHP   12730  2017-11-01 16:34 ~ 2017-11-01 16:37  
150
PHP   13136  2017-10-30 18:45  
149
PHP   26022  2017-10-25 14:41 ~ 2017-10-25 22:44  
148
PHP   11787  2017-10-10 01:52  
147
PHP   15973  2017-09-04 07:41  
146
PHP   19720  2017-08-06 01:09  
145
PHP   45258  2017-08-05 00:29 ~ 2018-01-10 06:11  
144
PHP   25845  2017-08-03 23:59  
143
PHP   29580  2017-08-03 16:56 ~ 2022-11-15 11:28  
142
PHP   13394  2017-05-26 17:29  
141
PHP   23662  2017-05-17 14:23  
140
PHP   21213  2017-04-13 13:13 ~ 2021-05-26 23:48  
139
PHP   16102  2017-03-29 07:57 ~ 2017-09-11 00:00  
138
PHP   11650  2017-03-01 22:49  
137
PHP   16907  2017-02-27 22:30  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.