1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?php //lấy tất cả chuổi timezon ví dụ: "Asia/Ho_Chi_Minh" timezone_identifiers_list(); //Để hiển thị chính xác thời gian địa phương cần set thông số này date_default_timezone_set("Asia/Ho_Chi_Minh"); // Lấy ngày tháng năm hiện tại $current_date = date('Y-m-d',time()); echo "Current date:" .$current_date."<br>"; // Cộng thêm 1 tuần $week = strtotime(date("Y-m-d", strtotime($current_date)) . " +1 week"); $week = date("Y-m-d",$week); echo "plus add a week:" .$week."<br>"; // Cộng thêm 1 tháng $month = strtotime(date("Y-m-d", strtotime($current_date)) . " +1 month"); $month= date("Y-m-d",$month); echo "plus add a month:" .$month."<br>"; $current_time = date('H:i:s',time()); echo "current time: ".$current_time."<br>"; $current_datetime = $month." ".$current_time; echo "plus add current time into month: ".$current_datetime."<br>"; echo "reformat datetime: ".date("d/m/Y h:i a",strtotime($current_datetime)); |
Results (kết quả đây):
Current date:2021-09-04
plus add a week:2021-09-11
plus add a month:2021-10-04
current time: 22:12:53
plus add current time into month: 2021-10-04 22:12:53
reformat datetime: 04/10/2021 10:12 pm
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress