본문 바로가기

Code Snippets/php

함수 : ucfirst / lcfirst

ucfirst

(PHP 4, PHP 5)

ucfirst — 문자열의 첫 글자를 대문자로 변환하는 함수


설명

string ucfirst ( string $str )

str 최초의 문자가 알파벳이라면 그것을 대문자로 변환합니다.

"알파벳"이냐는 것은 현재의 로케일로 결정됩니다. 예를 들어 기본"C"로케일에서는 a텍스트 (a)는 변환되지 않습니다.

파라미터

str

입력 문자열.

반환 값

변환 후의 문자열을 반환합니다.

사례 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 5 >= 5.3.0)

lcfirst — 문자열의 첫 글자를 소문자로 변환하는 함수

설명

string lcfirst ( string $str )

str 최초의 문자가 알파벳이라면 그것을 소문자로 합니다.

"알파벳"이냐는 것은 현재의 로케일로 결정됩니다. 예를 들어 기본"C"로케일에서는 a움라우트 (a)는 변환되지 않습니다.

파라미터

str

입력 문자열.

반환 값

변환 후의 문자열을 반환합니다.

사례 lcfirst() 의 예

<?php
$foo 
'HelloWorld';
$foo lcfirst($foo);             // helloWorld

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


'Code Snippets > php' 카테고리의 다른 글

함수 : error_reporting  (0) 2015.12.11
함수 : array_key_exists  (0) 2015.12.10
함수 : get_class()  (0) 2015.12.07
set_error_handler  (0) 2015.12.02
함수:unset()  (0) 2014.09.03