Answers for "js date to php datetime"

PHP
6

php format date

<?php
  // To change the format of an existing date
  $old_date_format = "20/03/1999";
  $new_data_format = date("Y-m-d H:i:s", strtotime($old_date_format));
Posted by: Guest on April-14-2020
0

javascript date to php date

<?php
$jsDateTS = strtotime($jsDate);
if ($jsDateTS !== false) date('Y-m-d', $jsDateTS);
else echo "Invalid Date Format"
?>
Posted by: Guest on August-10-2021

Browse Popular Code Answers by Language