Advertisement
denorian

Untitled

Mar 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?
  2. $date = date_create_from_format("D, d M Y H:i:s O", "Tue, 20 Mar 2018 01:38:22 GMT");
  3. echo date_format($date, 'Y-m-d');
  4.  
  5. //result 2018-03-20
  6.  
  7. $date = date_create_from_format("D, d M Y H:i:s O", "Tue, 21 Mar 2018 01:38:22 GMT");
  8. echo date_format($date, 'Y-m-d');
  9.  
  10. //result 2018-03-27 почему 27 марта?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement