PHP - Getting Current Timestamp [1]

Example #1

Code
$current_timestamp = time();
echo $current_timestamp;
Output
1716172403

Example #2

Code
$current_timestamp = strtotime("now");
echo $current_timestamp;
Output
1716172403

Example #3

Code
$date_from_timestamp = date("Y-m-d H:i:s",$current_timestamp);
echo "Formatted date from timestamp: " . $date_from_timestamp;
Output
Formatted date from timestamp: 2024-05-19 22:33:23