Jump to content

convert date to datetime or unixtimestamp


ohdang888

Recommended Posts

Use the strtotime function and the date function

<?php
$str = 'Wed, 26 May 2010 14:59:42 +0000';
$timestamp = strtotime($str);
echo $timestamp . '<br>';
$datetime = date('Y-m-d',$timestamp);
echo $datetime . '</br>';
?>

 

Ken

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.