当前位置:首页 > PHP教程 > php函数 > 列表

php strtotime函数怎么用

发布:smiling 来源: PHP粉丝网  添加日期:2020-04-04 22:06:30 浏览: 评论:0 

strtotime()函数是PHP中的一个内置函数,用于将英文文本时间或日期描述转换为UNIX时间戳。下面本篇文章就来给大家介绍一下strtotime()函数的使用方法,希望对大家有所帮助。

PHP strtotime()函数怎么用?

strtotime()函数接受表示日期时间的字符串参数,将任何英文文本的日期或时间描述解析为 Unix 时间戳;例如,“now”指的是当前日期。该函数返回自Unix Epoch以来的秒数。我们还可以使用date()函数以日期格式返回英文文本日期时间。

基本语法:

strtotime ($EnglishDateTime, $time_now)

参数:strtotime()函数接受两个参数

● $EnglishDateTime :指定英文文本时间或日期描述,表示要返回的日期或时间。该函数解析字符串并以秒为单位返回时间;不可省略。

● $time_now:指定用于计算返回值的时间戳;可省略。

注:由于时间/日期不是静态的,因此输出会有所不同。

下面通过代码示例来看看PHP strtotime()函数的使用

示例1:显示当前时间

  1. <?php  
  2.  
  3. header("content-type:text/html;charset=utf-8"); 
  4.  
  5. //以秒为单位显示当前时间 
  6.  
  7. echo "以秒为单位显示当前时间:".strtotime("now"), "<br>";   
  8.  
  9. // 以日期格式显示当前时间  
  10.  
  11. echo "以日期格式显示当前时间:".date("Y-m-d"strtotime("now"))."\n";  
  12.  
  13. ?> 

输出:

以秒为单位显示当前时间:1556162013

以日期格式显示当前时间:2019-04-25

示例2:显示“12th february 2017”所描述的时间日期

  1. <?php  
  2.  
  3. header("content-type:text/html;charset=utf-8"); 
  4.  
  5. // 以秒为单位显示转换后的日期时间 
  6.  
  7. echo "以秒为单位显示:".strtotime("12th february 2017")."<br>";   
  8.  
  9. // 以日期格式显示转换后的日期时间 
  10.  
  11. echo "以日期格式显示:".date("Y-m-d"strtotime("12th february 2017"))."<br>";  
  12.  
  13. ?> 

输出:

以秒为单位显示:1486854000

以日期格式显示:2017-02-12

示例3:显示当前时间的下周日的日期

  1. <?php  
  2.  
  3. header("content-type:text/html;charset=utf-8"); 
  4.  
  5. // 以秒为单位显示转换后的日期时间 
  6.  
  7. echo "以秒为单位显示:".strtotime("next sunday")."<br>";   
  8.  
  9. // 以日期格式显示转换后的日期时间 
  10.  
  11. echo "以日期格式显示:".date("Y-m-d"strtotime("next sunday"))."<br>";  
  12.  
  13. ?> 

输出:

以秒为单位显示:1556402400

以日期格式显示:2019-04-28

Tags: strtotime

分享到: