Home > php教程 > php手册 > php 简单strtotime()时间操作函数

php 简单strtotime()时间操作函数

WBOY
Release: 2016-06-13 10:03:49
Original
979 people have browsed it

strtotime此时间的Unix时间戳,有需要的朋友可以简单的参考一下,中间还讲了getdate函数,之后可以输出时分秒等。

 代码如下 复制代码

  //首先假设一个时间
  $dt= "2010-09-06 11:19:56";
  echo "时间:".$dt."
";
  //将此时间格式化为Unix时间戳
  $tm= strtotime($dt);
  echo "此时间的Unix时间戳:".$tm."
";
 ?>
实例

//用mktime()返回时间戳
  $tm= mktime(23,56,59,12,20,1999);
  echo "1999年12月20日23点56分59秒的Unix时间戳为:".$tm;
  //用strtotime()返回时间戳
  $tm2= strtotime("1999-12-20 23:56:59");
  echo "
用strtotime获得的同一时间的时间戳:".$tm2;
 ?>

  //设置一个时间(如采用当前时间可用time())
  $tm = strtotime("2006-09-09 10:30:40");
  echo "初始化设置的时间为:2006-09-09 10:30:40
";
  //使用不同的格式化字符串测试输出效果
  echo date("Y-M-D H:I:S A",$tm)."
";
  echo date("y-m-d h:i:s a",$tm)."
";
  echo date("Y年m月d日[l] H点i分s秒",$tm)."
";
  echo date("F,d,Y l",$tm)."
";
  echo date("Y-M-D H:I:S",$tm)."
";
  echo date("Y-M-D H:I:S",$tm)."
";
  echo date("所在时区:T,与格林威治时间相差:O小时",$tm)."
";
  //输出详细信息
 ?>

  //获取该时间的详细信息
  $arr = getdate($tm);
  //输出详细信息
  echo "秒:".$arr["seconds"]."
";
  echo "分:".$arr["minutes"]."
";
  echo "时:".$arr["hours"]."
";
  echo "日:".$arr["mday"]."
";
  echo "月:".$arr["mon"]."/".$arr["month"]."
";
  echo "年:".$arr["year"]."
";
  echo "星期:".$arr["wday"]."/".$arr["weekday"]."
";
  echo "该日期是该年中的第".$arr["yday"]."天
";
 ?>

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template