PHP create php code for converting date to days ago, months ago and years ago - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

how to create php code for converting date to days ago, months ago and years ago ?


 200

PHP


0

$DAY = date("d") - 21; // date("d") is current day of date, 21 is your day of record
if ($DAY == 0 ) {
$dateformat = "created: Today";
}
if ($DAY == 1 ) {
$dateformat = "created: " . $DAY . " day ago";
}
if ($DAY > 1 && $DAY <= 31) {
$dateformat = "created: " . $DAY . " days ago";
}

$MONTH = date("m") - 9; // date("m") is current month of date, 9 is your month of record
if ($MONTH == 1 ) {
$dateformat = "created: " . $MONTH . " month ago";
}
if ($MONTH > 1 ) {
$dateformat = "created: " . $MONTH . " months ago";
}

$YEAR = date("Y") - 2016; // date("Y") is current year of date, 2016 is your year of record
if ($YEAR == 1 ) {
$dateformat = "created: " . $YEAR . " year ago";
}
if ($YEAR > 1 ) {
$dateformat = "created: " . $YEAR . " years ago";
}


By        
The power of the user (%)
62%



The most helpful PHP solutions

detect browser phpdetect browser phpPHP

Click to see more ...

  4.8K     408

create QR code phpcreate QR code phpPHP

Click to see more ...

  3.2K     289

create relative date phpcreate relative date phpPHP

Click to see more ...

  2.3K     264

drag and drop upload file using phpdrag and drop upload file using phpPHP

Click to see more ...

  2.9K     253

delete array item phpdelete array item phpPHP

Click to see more ...

  2.6K     245

detect ie phpdetect ie phpPHP

Click to see more ...

  1.7K     213

detect speed internet phpdetect speed internet phpPHP

Click to see more ...

  1.8K     198

get current url phpget current url phpPHP

Click to see more ...

  1.9K     197

get meta tag phpget meta tag phpPHP

Click to see more ...

  1.6K     193

Get real client country using php ?Get real client country using php ?PHP

Click to see more ...

  1.5K     181

Welcome aboard!
We are happy you are here and
wish you good net-raft!