我的网站使用以下代码:
$a1="1293011062"; // hex code umm i think !
$expires = date('M d, Y', $a1);
echo $expires; // Output Dec 22, 2010
如何进行反向操作?也就是说,如果我想转换Apr 06, 2012
为十六进制,它的表示方式是a1
什么?
您可以使用 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
?>