Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. print date("l, F j, Y h:m:s a", strtotime("+8 hours"));
  2.  
  3. <?php echo date("D M d, Y G:i a"); ?>
  4.  
  5. <?php
  6. //$today = date("F j, Y, g:i a"); // March 10, 2001, 5:16 pm
  7. //$today = date("m.d.y"); // 03.10.01
  8. //$today = date("j, n, Y"); // 10, 3, 2001
  9. //$today = date("Ymd"); // 20010310
  10. //$today = date('h-i-s, j-m-y, it is w Day'); // 05-16-18, 10-03-01, 1631 1618 6 Satpm01
  11. //$today = date('it is the jS day.'); // it is the 10th day.
  12. //$today = date("D M j G:i:s T Y"); // Sat Mar 10 17:16:18 MST 2001
  13. //$today = date('H:m:s m is month'); // 17:03:18 m is month
  14. //$today = date("H:i:s"); // 17:16:18
  15.  
  16. echo $today;
  17. ?>
  18.  
  19. date_default_timezone_set("Asia/Colombo");
  20.  
  21. echo date("Y-m-d H:i:s"); // or any format
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement