天空小小岛技术论坛

 找回密码
 注册
搜索
查看: 6377|回复: 0
打印 上一主题 下一主题

[其他] unix时间戳与时间互转工具源码

[复制链接]
跳转到指定楼层
1#
一粒米 发表于 2010-5-26 18:01:02 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
  1. <?php
  2. /*

  3. 时间互换
  4. Author: Arice
  5. Site: http://www.tkxxd.net

  6. */

  7. //note 设置时区
  8. $timeoffset = 8;
  9. if(PHP_VERSION > '5.1') {
  10.         @date_default_timezone_set('Etc/GMT'.($timeoffset > 0 ? '-' : '+').(abs($timeoffset)));
  11. }

  12. //note 取得当前时间戳
  13. $timestamp = time();
  14. $now = gmdate('Y-m-d H:i:s', $timestamp + $timeoffset * 3600);

  15. if(isset($_POST['t'])) {
  16.         $t = trim($_POST['t']);
  17. } else {
  18.         $t = '';
  19. }

  20. if($t) {
  21.         //note 判断是否时间戳
  22.         if(preg_match('/^\d+$/', $t)) {
  23.                 $r = gmdate('Y-m-d H:i:s', $t + $timeoffset * 3600);
  24.         } else {
  25.                 $r = strtotime($t);
  26.         }
  27.         $result = '结果: '.$r;
  28. } else {
  29.         $result = '';
  30. }

  31. echo <<<EOT
  32. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  33. <html xmlns="http://www.w3.org/1999/xhtml">
  34. <head>
  35. <meta http-equiv="Content-Type" content="text/html; charset=gbk" />
  36. <title>时间转换工具 - Powered by tkxxd</title>
  37. <meta name="keywords" content="时间戳与时间互转" />
  38. <meta name="description" content="时间戳与时间互转,天空小小岛,www.tkxxd.net" />
  39. <meta name="generator" content="Discuz! 7.0.0" />
  40. <meta name="author" content="TKXXD" />
  41. <meta name="copyright" content="2004-2015" />
  42. <meta name="MSSmartTagsPreventParsing" content="True" />
  43. <meta http-equiv="MSThemeCompatible" content="Yes" />
  44. </head>
  45. <body>
  46. <form method="post" name="form1" action="?">
  47. 当前时间: $now 时间戳: $timestamp<br /><br />
  48. 输入时间或时间戳: <input type="text" name="t" value="$t">
  49. <input type="submit" name="submit" value="提交"><br />
  50. </form>
  51. $result
  52. </body>
  53. </html>
  54. EOT;

  55. ?>
复制代码
预览:

http://www.tkxxd.net/time.php
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|天空小小岛  |京ICP备2025130156号|

GMT+8, 2025-6-21 21:55 , Processed in 0.094387 second(s), 19 queries , Gzip On.

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表