php timestamp to date
<?php
echo date('m/d/Y H:i:s', 1541843467);
?>
php timestamp to date
<?php
echo date('m/d/Y H:i:s', 1541843467);
?>
string to datetime php
$s = '06/10/2011 19:00:02';
$date = strtotime($s);
echo date('d/M/Y H:i:s', $date);
Convert String to Date and Date-Time in PHP
phpCopy$oldDate = strtotime('03/08/2020');
$newDate = date('Y-m-d',$time);
echo $newDate;
//output: 2020-03-08
Convert String to Date and Date-Time in PHP
phpCopyecho $dateNew = date_create_from_format("m-d-Y", "03-08-2020")->format("Y-m-d");
//output: 2020/03/08
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