php 中常用的日期处理函数
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-04 15:11:30 浏览: 评论:0
- // date_format2($rs['time'],'%y年%m月%d日%h时%m分%s秒');
- function date_format2($string, $format='%b %e, %y', $default_date=null)
- {
- if (substr(php教程_os,0,3) == 'win') {
- $_win_from = array ('%e', '%t', '%d');
- $_win_to = array ('%#d', '%h:%m:%s', '%m/%d/%y');
- $format = str_replace($_win_from, $_win_to, $format);
- }
- if($string != '') {
- return strftime($format, smarty_make_timestamp($string));
- } elseif (isset($default_date) && $default_date != '') {
- return strftime($format, smarty_make_timestamp($default_date));
- } else {
- return;
- }
- }
- function smarty_make_timestamp($string){
- if(emptyempty($string)) {
- $string = "now";
- }
- $time = strtotime($string);
- if (is_numeric($time) && $time != -1)
- return $time;
- if (preg_match('/^d{14}$/', $string)) {
- $time = mktime(substr($string,8,2),substr($string,10,2),substr($string,12,2),
- substr($string,4,2),substr($string,6,2),substr($string,0,4));
- return $time;
- }
- $time = (int) $string;
- if ($time > 0)
- return $time;
- else
- return time();
- }
Tags: php函数 日期处理函数
- 上一篇:php 时间数据转换为时间戳代码
- 下一篇:收集了几款常用php日期操作
相关文章
- ·在php中有没有日期相减的函数(2013-11-27)
- ·php时间日期的处理函数(2014-05-19)
- ·使用php-timeit估计php函数的执行时间(2021-06-17)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)