09/10/2018, 23:36

Cho em hỏi 1 tý về date&time

Em đặt sever ở GMT -3 nhưng muốn lấy giờ VN gmt +7
Em dùng thử mấy hàm nhưng đều không thành công
em đang dùng tạm date('H:i, d/m/Y')
nhưng timezone thì nó lấy ở sever.

Với cả giải thích rõ hơn cho em chế độ saving time nhé
Khi nào thì +1 khi nào thì -1
Mitxixipi viết 01:48 ngày 10/10/2018
bác nào giúp em với.................
amida viết 01:44 ngày 10/10/2018
http://www.php.net/manual/en/functio...mezone-set.php
conmalele viết 01:37 ngày 10/10/2018
Đầu chương trình bạn nên đặt timezone GMT+0

PHP Code:
//Initialize Time Info
$nowtime***91;'timestamp'***93;=time();
$nowtime+=array('year'=>gmdate('Y'$nowtime***91;'timestamp'***93;+3600*$config***91;'timezone'***93;), 'month'=>gmdate('n'$nowtime***91;'timestamp'***93;+3600*$config***91;'timezone'***93;), 'day'=>gmdate('j'$nowtime***91;'timestamp'***93;+3600*$config***91;'timezone'***93;), 'Ymd'=>gmdate('Ymd'$nowtime***91;'timestamp'***93;+3600*$config***91;'timezone'***93;), 'Ym'=>gmdate('Ym'$nowtime***91;'timestamp'***93;+3600*$config***91;'timezone'***93;)); 
Lấy từ Bo-Blog
conmalele viết 01:40 ngày 10/10/2018
PHP Code:
print_r($nowtime); 
PHP Code:
Array
(
    ***91;
timestamp***93; => 1185373062
    
***91;year***93; => 2007
    
***91;month***93; => 7
    
***91;day***93; => 25
    
***91;Ymd***93; => 20070725
    
***91;Ym***93; => 200707

Bài liên quan
0