10/10/2018, 09:32

Hỏi về cách sắp xếp vị trí của hàm Date...

Trong dữ liệu của mình có ghi "2009-04-09 05:02:00"
Nhưng mình muốn nó sắp xếp vị trí theo thứ tự là "09-04-2009 05:02:00"
mong mọi người giúp đỡ ...
BossFTP viết 11:43 ngày 10/10/2018
PHP Code:
date("d-m-o H:i:s"strtotime("2009-04-09 05:02:00")); 
(chưa test )
fotech_nd viết 11:42 ngày 10/10/2018
[QUOTE=BossFTP;1595360]
PHP Code:
date("d-m-o H:i:s"strtotime("2009-04-09 05:02:00")); 
=> Boss nhầm rồi

Phải là
PHP Code:
echo date("d-m-Y H:i:s"strtotime("2009-04-09 05:02:00"));
// hoặc echo date("d-m-Y H:i:s", strtotime($duLieuCu)); // $duLieuCu là "2009-04-09 05:02:00" lấy ra từ DB của bạn 
snoob viết 11:47 ngày 10/10/2018
[quote=fotech_nd;1595429]
Được gửi bởi BossFTP
PHP Code:
date("d-m-o H:i:s"strtotime("2009-04-09 05:02:00")); 
=> Boss nhầm rồi

Phải là
PHP Code:
echo date("d-m-Y H:i:s"strtotime("2009-04-09 05:02:00"));
// hoặc echo date("d-m-Y H:i:s", strtotime($duLieuCu)); // $duLieuCu là "2009-04-09 05:02:00" lấy ra từ DB của bạn 
Em bái phục với bác
bachcotsau viết 11:36 ngày 10/10/2018
Thank các bác nhiều,có gì không hiểu mong các bác giúp đỡ em nha...
BossFTP viết 11:43 ngày 10/10/2018
[quote=fotech_nd;1595429]
Được gửi bởi BossFTP
PHP Code:
date("d-m-o H:i:s"strtotime("2009-04-09 05:02:00")); 
=> Boss nhầm rồi

Phải là
PHP Code:
echo date("d-m-Y H:i:s"strtotime("2009-04-09 05:02:00"));
// hoặc echo date("d-m-Y H:i:s", strtotime($duLieuCu)); // $duLieuCu là "2009-04-09 05:02:00" lấy ra từ DB của bạn 
o ISO-8601 year number. This has the same value as Y, except that if the ISO week number (W) belongs to the previous or next year, that year is used instead. (added in PHP 5.1.0)
thiếu echo thoai
fotech_nd viết 11:40 ngày 10/10/2018
Được gửi bởi BossFTP
o ISO-8601 year number. This has the same value as Y, except that if the ISO week number (W) belongs to the previous or next year, that year is used instead. (added in PHP 5.1.0)
thiếu echo thoai
=> Vẫn là thiếu - ehe, với lại nếu dùng PHP4 thì
PHP Code:
echo date("d-m-o H:i:s"strtotime("2009-04-09 05:02:00")); 
sẽ output ra "09-04-o 05:02:00" => không như mong đợi
BossFTP viết 11:41 ngày 10/10/2018
đầu hàng vậy
Bài liên quan
0