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
- Eclipse
- 주식 청약
- 공모주 청약 일정
- 6월 공모주 청약 일정
- php
- jquery
- 오라클
- codeigniter
- 자바스크립트
- IPO
- 공모주 청약
- java
- 주식 청약 일정
- MYSQL
- html
- linux
- 제이쿼리
- 리눅스
- 맥
- Stock ipo
- Stock
- 코드이그나이터
- SQL
- JavaScript
- 자바
- css
- Oracle
- 공모주
- 7월 공모주 청약 일정
- 주식
Archives
- Today
- Total
목록php time (3)
개발자의 끄적끄적
[php] php 날짜 계산
[php] php 날짜 계산 date("Y-m-d", strtotime("-1 day")) // 현재시간부터 1 주일 전 date("Y-m-d", strtotime("-1 week")) // 현재시간부터 1 주일 전 date("Y-m-d", strtotime("-1 month")) // 현재시간부터 1 개월 전 date("Y-m-d", strtotime("-3 month")) // 현재시간부터 1 개월 전 date("Y-m-d", strtotime("-6 months")) // 현재시간부터 6 개월 전 date("Y-m-d", strtotime("+6 months")) // 현재시간부터 6 개월 후 date("Y-m-d", strtotime("+1 years")) // 현재시간부터 1 년 후 제가 평소에..
개발/php
2019. 10. 24. 03:00
[php] php strtotime / date형식을 timestamp로
Php strtotime시간함수 $date = "2019-01-01 00:00:00"; 로 나타나있는 날짜를 timestamp 형식으로 변환하고 싶으면!! $time_stamp = strtotime($date); 이렇게 하면 timestamp 방식으로 변환 끝!
개발/php
2019. 9. 21. 22:37
[php] php time 시간함수
Php time 시간함수 time(); 현재시간을 timestamp 형식으로 반환!
개발/php
2019. 9. 21. 16:29