0

我的网站使用以下代码:

$a1="1293011062"; // hex code umm i think !
$expires = date('M d, Y', $a1);
echo $expires; // Output Dec 22, 2010

如何进行反向操作?也就是说,如果我想转换Apr 06, 2012为十六进制,它的表示方式是a1什么?

4

1 回答 1

1

您可以使用 strtotime:http ://us2.php.net/strtotime这不是十六进制

<?php
$a1="1293004800";
$expires = date('M d, Y', $a1);
echo $expires . "<br/>"; // Output Dec 22, 2010

echo strtotime($expires); // 1293004800
?>
于 2012-04-06T17:55:46.777 回答