在PHP中,可以使用time()函数获取当前时间戳。time()函数返回的是当前时间距离1970年1月1日00:00:00的秒数。
示例代码如下:
$currentTimestamp = time();
echo "当前时间戳:" . $currentTimestamp;
输出结果类似于:
当前时间戳:1630048776
另外,如果需要获取更精确的当前时间戳,可以使用microtime()函数。microtime()函数返回的是当前时间距离1970年1月1日00:00:00的秒数和微秒数。
示例代码如下:
$currentTimestamp = microtime(true);
echo "当前时间戳:" . $currentTimestamp;
输出结果类似于:
当前时间戳:1630048776.987654