[Solved] Create the timestamp of an hour ago [duplicate]


Just use strtotime function of php.

for example:

$twoHoursAgo = Date("Y-m-d H:i:s", strtotime("-2 hours"));

for more refer below link Get the timestamp of exactly one week ago in PHP?

2

solved Create the timestamp of an hour ago [duplicate]