함수 studly case()

Jmnote (토론 | 기여)님의 2016년 10월 31일 (월) 16:06 판

1 개요

함수 studly_case()

2 PHP

  • 순수 PHP
function studly_case($value) {
    $value = ucwords(str_replace(['-', '_'], ' ', $value));
    return str_replace(' ', '', $value);
}
$samples = array('foo_bar', 'Foo Bar', 'FooBar', 'fooBar', 'Foobar', 'foo bar', 'FOOBAR');
foreach( $samples as $sample ) {
	echo $sample." → ".studly_case($sample) . PHP_EOL;
}
# foo_bar → FooBar
# foo bar → FooBar
# Foo Bar → FooBar
# FooBar → FooBar
# fooBar → FooBar
# Foobar → Foobar
# FOOBAR → FOOBAR

3 같이 보기

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