php时间戳代码
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
echo strtotime('2011-12-25') ."<br>";
echo strtotime('2001-12-25 12:20:30') ."<br>";
echo strtotime("08 august 2008");
?>
</body>
</html>php时间戳代码,宗波尘客