php convert date from dd/mm/yyyy to yyyy-mm-dd
$date = DateTime::createFromFormat('d/m/Y', "24/04/2012");
echo $date->format('Y-m-d');
php convert date from dd/mm/yyyy to yyyy-mm-dd
$date = DateTime::createFromFormat('d/m/Y', "24/04/2012");
echo $date->format('Y-m-d');
convert dd/mm/yyyy to yyyy-mm-dd in mysql php
$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));
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"));
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us