PHP时间戳与日期之间转换

在php中如果要实现日期转换成时间戳我们可以直接使用strtotime函数,如果把时间戳转换成日期直接使用date()函数即可实现,下面我来给各们朋友介绍介绍.

strtotime()函数 strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳.

实例代码如下:

  1. <?php
  2. echo(strtotime("now"));
  3. echo(strtotime("3 October 2005"));
  4. echo(strtotime("+5 hours"));
  5. echo(strtotime("+1 week"));
  6. echo(strtotime("+1 week 3 days 7 hours 5 seconds"));
  7. echo(strtotime("next Monday"));
  8. echo(strtotime("last Sunday"));
  9. ?>

输出:

1138614504

1128290400

1138632504

1139219304

1139503709

1139180400

1138489200

上面是把日期转换成时间戳了,我们也可以把如 2013-04-21这种转换成时间戳

实例代码如下:

  1. $a = date();
  2. $mk = strtotime($a)

要求只能在白天8:00-20:00发送短信,怎么样获得到每天的这段时间区间?

实例代码如下:

  1. <?
  2. $y=date("Y",time());
  3. $m=date("m",time());
  4. $d=date("d",time());
  5. $start_time = mktime(9, 0, 0, $m, $d ,$y);
  6. $end_time = mktime(19, 0, 0, $m, $d ,$y);
  7. $time = time();
  8. if($time >= $start_time && $time <= $end_time)
  9. {
  10. // do something....
  11. }
  12. ?>

下面来介绍把时间戳转换成日期

date()函数,此函数不但可以获取各种各样的时间日期之外,还可以进行日期转换呼

实例代码如下:

  1. <?
  2. $time = time();
  3. $date = date("Y-m-d",$time);
  4. echo 'www.phpfensi.com 提示'.$date
  5. ?>