Home > php教程 > php手册 > php比较绝对时间的大小示例

php比较绝对时间的大小示例

WBOY
Release: 2016-06-06 19:53:12
Original
1359 people have browsed it

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 分享下php比较两个绝对时间的大小的一例代码,有需要的朋友做个参考吧。 本节内容: php比较两个绝对时间的大小 代码: 代码示例: ?php $zero1=date("y-m-d h:i:s"); $zero2="2010-11-29 21:07:0

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  分享下php比较两个绝对时间的大小的一例代码,有需要的朋友做个参考吧。

  本节内容:

  php比较两个绝对时间的大小

  代码:

  代码示例:

  

  $zero1=date("y-m-d h:i:s");

  $zero2="2010-11-29 21:07:00′;

  echo "zero1的时间为:".$zero1."
";

  echo "zero2的时间为:".$zero2."
";

  if(strtotime($zero1)

  echo "zero1早于zero2′;

  }else{

  echo "zero2早于zero1′;

  }

  ?>

php比较绝对时间的大小示例

Related labels:
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