Answers for "yyyy-mm-ddthh:mm:ss in php"

PHP
0

yyyymmdd to yyyy-mm-dd php

<?php
// both lines output 813470400
echo strtotime("19951012"), "n",
     strtotime("12 October 1995");

// prints 1995 Oct 12
echo date("Y-m-d", strtotime("19951012"));
?>
Posted by: Guest on November-04-2020

Code answers related to "yyyy-mm-ddthh:mm:ss in php"

Browse Popular Code Answers by Language