PHP capitalize()

Jmnote (토론 | 기여)님의 2018년 8월 19일 (일) 01:58 판 (새 문서: ==개요== ;PHP capitalize() <source lang='php'> <?php echo ucfirst(strtolower( 'hello world!' )); # Hello world! echo ucfirst(strtolower( 'HELLO WORLD!' )); # Hello world! </source>...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

PHP capitalize()
<?php
echo ucfirst(strtolower( 'hello world!' ));
# Hello world!
echo ucfirst(strtolower( 'HELLO WORLD!' ));
# Hello world!

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}