Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 옵티머스 g
- upbit
- 코드이그나이터
- 프레임워크
- ubuntu
- Raspberry Pi
- 우분투 20.04
- codeigniter
- 20.04
- FMS
- 회고
- 라라벨
- MySQL
- php
- TiL
- 맥
- 옵지
- 셀레니움
- 옵G
- C
- Ubuntu 20.04
- 제주도
- Selenium
- 업비트
- 옵티머스g
- 우분투
- 라즈비안
- 맛집
- 라즈베리파이
- Laravel
Archives
- Today
- Total
평범한 이야기들
[PHP] 문자열 채우기 str_pad 함수 본문
728x90
STR_PAD
특정 문자열의 앞이나 뒤쪽에 똑같은 문자를 채워넣을때 사용할 수 있는 함수입니다.
달력이나 날짜 앞에 '0'을 붙이거나 아이디를 일정 가릴때 사용하면 참 좋을꺼 같습니다.
함수 원형
string str_pad ( string $input
, int $pad_length
[, string $pad_string
= "
" [, int $pad_type
= STR_PAD_RIGHT ]] )
함수 파라미터 설명
string $input : 대상 문자열
int $pad_length : 대상 문자열의 길이를 변경
string $pad_string : 추가되는 문자열에 넣을 문자열
int $pad_type : 좌측 , 우측 또는 양쪽에 넣을지 결정 (STR_PAD_LEFT,STR_PAD_RIGHT,STR_PAD_BOTH 사용)
사용 예)
<?php
$input = "Alien";
echo str_pad($input, 10); // produces "Alien "
echo str_pad($input, 10, "-=", STR_PAD_LEFT); // produces "-=-=-Alien"
echo str_pad($input, 10, "_", STR_PAD_BOTH); // produces "__Alien___"
echo str_pad($input, 6 , "___"); // produces "Alien_"
?>
728x90
Comments