첫문자를 대문자, 소문자로 변경하는 함수
페이지 정보
작성자 MintState 댓글 0건 조회 7,271회 작성일 17-08-08 19:35본문
첫문자를 대문자, 소문자로 변경하는 함수
ucfirst 첫문자를 대문자로
lcfirst 첫문자를 소문자로
ucwords 문장 첫문자를 대문자로
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! ?>
|
댓글목록
등록된 댓글이 없습니다.