"함수 ucwords()"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
[[category: string]]
[[category: string]]
;title()
==개요==
;ucwords()
;ucwords()
;<del>title()</del>


==PHP==
==PHP==

2020년 1월 23일 (목) 11:46 판

1 개요

ucwords()
title()

2 PHP

echo ucwords('hello, world!');
# Hello, World!
echo ucwords('FooBar');
# FooBar

3 Python

print( 'hello, world!'.title() )
# Hello, World!
print( 'FooBar'.title() )
# Foobar

4 같이 보기

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