; str_repeat - 문자열을 반복
; string str_repeat ( string $input , int $multiplier )
; $input을 $multiplier의 수 만큼 반복하여 반환한다.
ex)
<?php
echo str_repeat(":)",10);
// :):):):):):):):):):) -> :)을 10번 반복.
?>
'Web Progreming > PHP_Function' 카테고리의 다른 글
[ PHP ] 브라우저 정보 가져오기 - Stackoverflow (0) | 2014.09.05 |
---|