来了 活了 爱了 - 杨余斌的个人主页

268 元 丰胸极限 美国魔力丰丰乳片mirifem
最火爆的丰胸品-美国魔力丰丰乳片mirifem

268 元 绝对NO1新版mirifem魔力丰丰胸片
美国顶级产品 畅销世界各地 强势登陆国内

156 元 消腩宝贝 快速瘦身 月减20斤
★★妙妙独家代理★★消腩宝贝★★速效减肥胶囊★月

PHP的日期时间格式化函数

作者:杨余斌    来自: 加入时间:2007-Feb-24

函数名:date_format
参数: $string 时间源,可以是2006-04-24 09:56:07这种格式,$format要格式化的形式,如%Y年%m月%d日%H时%M分%S秒看需要删改
示例:

<?php
echo date_format($rs['time'],'%Y年%m月%d日%H时%M分%S秒');
?>

function date_format($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(empty($string)) {
        $string = "now";
    }
    $time = strtotime($string);
    if (is_numeric($time) && $time != -1)
        return $time;

    // is mysql timestamp format of YYYYMMDDHHMMSS?
    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;
    }

    // couldn't recognize it, try to return a time
    $time = (int) $string;
    if ($time > 0)
        return $time;
    else
        return time();
}


[声明]
    以上文章如果标明为杨余斌自创,在转载时必须注明出处,并且不得修改文章内容,和文章内的链接等。
    以上文章或资料除注明为杨余斌自创或编辑整理外,均为各方收集或网友推荐所得。其中摘录的内容以共享、研究为目的,不存在任何商业考虑。
    目前网站上有些文章未注明作者或出处,甚至标注错误,此类情况出现并非不尊重作者及出处网站,而是因为有些资料来源的不规范。如果有了解作者或出处的原作者或网友,请告知,本网站将立即更正注明,并向作者或出处单位道歉。
    被摘录的对象如有任何异议,请与本站联系,联系邮箱:webmaster at yangyubin.com,本站确认后将立即撤下。谢谢您的支持与理解
合作伙伴

999 元 海胆精-给男人动力,换女人激情
青岛海汇公司国家发明专利,具有滋阴补肾功能

Text Link Ads
Text Link Ads,注册就送100美元!




Copyright © 2006 www.yangyubin.com All rights reserved.
| Wind CMS 文章管理系统1.0 |