본문 바로가기

substr5

[php 함수] 숫자에 컴마추가 (금액) addcomma number_format [php 함수] 숫자에 컴마추가 (금액) addcomma number_format[php 함수] 숫자에 컴마추가 (금액) addcomma number_format [ 출력 ] Array ( [0] => 100,000 [1] => 2,000,000 [2] => 12,345.1234 ) 1,234,567 2018. 12. 31.
[php 함수] 숫자에 컴마 제거 (금액) removecomma str_replace [php 함수] 숫자에 컴마 제거 (금액) removecomma str_replace[php 함수] 숫자에 컴마 제거 (금액) removecomma str_replace [ 출력 ]Array ( [0] => 100000 [1] => 2000000 [2] => 12345.1234 ) 1234567 2018. 12. 31.
[php 함수] 이전달 , 다음달 구하기 ($yymm 은 200604 과 같은 형식으로) strtotime [php 함수] 이전달 , 다음달 구하기 ($yymm 은 200604 과 같은 형식으로) strtotime[php 함수] 이전달 , 다음달 구하기 ($yymm 은 200604 과 같은 형식으로) strtotime [ 출력 ]201508 201510 2018. 12. 31.
[php 함수] 두날짜 사이의 모든날짜 배열 만들기 str_replace substr checkdate [php 함수] 두날짜 사이의 모든날짜 배열 만들기 str_replace substr checkdate[php 함수] 두날짜 사이의 모든날짜 배열 만들기 str_replace substr checkdate [ 출력 ] Array ( [2015-09-01] => 2015-09-01 [2015-09-02] => 2015-09-02 [2015-09-03] => 2015-09-03 [2015-09-04] => 2015-09-04 [2015-09-05] => 2015-09-05 [2015-09-06] => 2015-09-06 [2015-09-07] => 2015-09-07 [2015-09-08] => 2015-09-08 [2015-09-09] => 2015-09-09 [2015-09-10] => 2015-09-1.. 2018. 12. 29.
[php 함수] 금액의 원단위를 절삭 substr strlen [php 함수] 금액의 원단위를 절삭 substr strlen[php 함수] 금액의 원단위를 절삭 substr strlen [ 출력 ]124650 2018. 12. 29.