Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function convert2_humanreadable_dateformat($date,$delimeter,$has_time) {
  2. $date_arr = array();
  3.  
  4. $date_arr_time = explode(" ",$date);
  5. $date_arr = explode($delimeter,$date_arr_time[0]);
  6.  
  7. if ($has_time) {
  8. $result = $date_arr[2]."/".$date_arr[1]."/".$date_arr[0]." ".$date_arr_time[1];
  9. }
  10. else {
  11. $result = $date_arr[2]."/".$date_arr[1]."/".$date_arr[0];
  12. }
  13.  
  14. return $result;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement