PHP program to print the timestamp of the start of the request

bookmark

<?php
//PHP program to print the timestamp 
//of the start of the request.

$requestTime = $_SERVER['REQUEST_TIME'];

printf("Timestamp: %s<br>", $requestTime);
?>


Output
Timestamp: 1604073329