time():返回当前的Unix时间戳;
date():格式化一个本地的时间戳;
mktime(时,分,秒,月,日,年):取得一个日期的时间戳;
strtotime():将任何英文文本的日期时间描述解析为Unix时间戳
echo time();
立即学习“PHP免费学习笔记(深入)”;
echo date('Y-m-d H:i:s',time());
echo mktime(13,54,55,9,18,2015);
echo strtotime("now");
PHP5学习对象教程由美国人古曼兹、贝肯、瑞桑斯编著,简张桂翻译,电子工业出版社于2007年12月1日出版的关于PHP5应用程序的技术类图书。该书全面介绍了PHP 5中的新功能、编程方法及设计模式,还分析阐述了PHP 5中新的数据库连接处理、错误处理和XML处理等机制,帮助读者系统了解、熟练掌握和高效应用PHP。
echo strtotime("10 September 2015");
echo strtotime("+1 day");
echo strtotime("+1 week");
echo strtotime("next Thursday");
echo strtotime("last Monday");









