Answers for "timestamp format"

PHP
1

strtotime format

$date = '25/05/2010';
$date = str_replace('/', '-', $date);
echo date('Y-m-d', strtotime($date));
Posted by: Guest on June-03-2020
0

convert timestamp to datetime

from datetime import datetime

# current date and time
now = datetime.now()

timestamp = datetime.timestamp(now)
print("timestamp =", timestamp)
Posted by: Guest on May-19-2020

Browse Popular Code Answers by Language