标签: php timestamp hex
我必须在php中将时间戳设置为十六进制时间戳。问题是,我找不到如何做到这一点。猜猜它会有一些简单的功能。有人可以帮帮我吗?
答案 0 :(得分:4)
您可以通过使用time()调用当前时间戳,然后使用dexhex函数将其转换为十六进制来创建十六进制纪元时间戳:
$hextime = dechex(time());
http://php.net/manual/en/function.time.php http://php.net/manual/en/function.dechex.php
http://php.net/manual/en/function.time.php
http://php.net/manual/en/function.dechex.php