strtotime("now");
// strtotime is a function that will take a string parameter
// that specifies a date, and returns a unix time stamp bassed
// on that
echo strtotime("2020-02-24");
// prints: 1582502400
<?php
$current_timestamp = time();
echo $current_timestamp;
?>
<?php
echo time();
?>
<?php
$nextWeek = time() + (7 * 24 * 60 * 60);
// 7 days; 24 hours; 60 mins; 60 secs
echo 'Now: '. date('Y-m-d') ."
";
echo 'Next Week: '. date('Y-m-d', $nextWeek) ."
";
// or using strtotime():
echo 'Next Week: '. date('Y-m-d', strtotime('+1 week')) ."
";
?>
<?php
$date = date_create();
echo date_timestamp_get($date);
?>