Jump to content

get the date how long it get post


mikhell

Recommended Posts

I try to get how long my message was sent with this...

 

        $Now						= strtotime ("now");
$dateEnvoi					= $fetchDiscussion['dateEnvoi']; //my date from my DB
$timeEnvoi					= mktime($dateEnvoi);
$TempsEnvoi					= $dateNow - $dateEnvoi;

 

and it try to get how long it was post ... same thing as on facebook... like the 26 minutes ago from FB how can i do it ?

 

Link to comment
https://forums.phpfreaks.com/topic/216180-get-the-date-how-long-it-get-post/
Share on other sites

It all depends on how the data in the database is stored as how I can help you proceed.

 

If it is stored as a DateTime use this

// If it is stored as a DateTime use this
$stored_date = strtotime($fetchDiscussion['dateEnvoi']);
$time_diff = time() - $stored_date;
// If stored as a unix timestamp use this
$time_diff = time() - $fetchDiscussion['dateEnvoi'];

Then use PHP date function to display the date correctly.

http://php.net/manual/en/function.date.php

 

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.