📅  最后修改于: 2022-03-11 14:56:56.033000             🧑  作者: Mango
$init = 60; //initial time
$ttl = $redis->ttl("key"); //current ttl
$diff = $init - $ttl; //difference is the time passed after key was created
$creation = time() - $diff; //this is creation time in seconds since unix epoch