Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- MySQL
- unity
- java
- NGINX
- 컴퓨터과학총론
- 한글
- 해석
- H2O
- ubuntu
- C
- error
- 자바
- php
- mariadb
- caddy
- 개발자
- server
- Portfolio
- centOS7
- it
- C lanuage
- javascript
- 프래그먼트
- 번역
- 안드로이드
- 개발
- kakao
- android
- 구글
- techEmpower
Archives
- Today
- Total
개발모음집
php에서 mysql에 현재 시간 넣기 본문
안드로이드에서 글쓰기 버튼을 클릭했을 때 현재 시간이 디비에 저장되었으면 좋겠다고 생각
내 디비의 컬럼은 datetime형이었고
검색한 결과 php5.6 이하에서 현재시간을 넣으려면
timestamp형으로 바꿔야한다고 나와있다.
그래서 우선 데이터형을 바꾸고
스택오버플로우에 나온 것 처럼
$date =date('Y-m-d H:i:s','1299762201428');
를 사용.
하지만
Warning: date(): It is not safe to rely on the system's timezone settings.
You are *required* to use the date.timezone setting or the date_default_timezone_set() function.
In case you used any of those methods and you are still getting this warning,
you most likely misspelled the timezone identifier.
We selected 'Asia/Seoul' for 'KST/9.0/no DST'
와 같은 에러 발생
참고 블로그 여길 확인해보니
php.ini 파일의 [date]에 date.timezone = Asia/Seoul을 입력해주고
php 파일에서 date 쓰기전에
date_default_timezone_set('Asia/Seoul');
입력하니 해결
'TheRestDevelop' 카테고리의 다른 글
php 나온 이유, 동작원리, php5.x 와 php 7 차이 (0) | 2017.10.23 |
---|---|
안드로이드에서 크기가 큰 파일이 서버에 저장되지 않을 때 (0) | 2017.08.10 |
Call to a member function fetch_assoc() on a non-object 에러 (0) | 2017.06.19 |
ubuntu에서 composer 이용하기 (0) | 2017.06.01 |
웹호스팅 Warning: mysqli_connect(): (HY000/1045): Access denied for user 'username'@'localhost' (using password: YES) error (0) | 2017.05.11 |