免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1186 | 回复: 0
打印 上一主题 下一主题

php刚写的两个函数,验证日期格式和比较日期大小 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-11-01 14:40 |只看该作者 |倒序浏览

//大家可以扩展后支持多种分隔符.现在只支持2006-10-10格式
//测试通过
/**
* 验证日期格式是否正确
*
* @param unknown_type $string
* @return unknown
*/
function is_date_format($string)
{
    if ( preg_match("/^[0-9]{4}-[0-9]{1,2}-[0-9]{1,2}$/",$string) )
    {
        $first_sep = strpos($string,"-");
        $year = substr($string,0,$first_sep);
        $part_month_day = substr($string,$first_sep+1);   
        $last_sep = strpos($part_month_day,"-");   
        $month = substr( $part_month_day,0,$last_sep );
        $day = substr($part_month_day,$last_sep+1);
        if ( checkdate($month, $day, $year) ) {
            return 1;
        }else{
            return 0;
        }
    }else {
        return 0;
    }
}
/**
* 比较两个日期的相差天数,第一个减第二个,返回相差天数的绝对值
*
* @param unknown_type $date1
* @param unknown_type $date2
* @return int
*/
function compare2date($date1,$date2="")
{
    $first_sep = strpos($date1,"-");
    $year1 = substr($date1,0,$first_sep);
    $part_month_day = substr($date1,$first_sep+1);   
    $last_sep = strpos($part_month_day,"-");   
    $month1 = substr( $part_month_day,0,$last_sep );
    $day1 = substr($part_month_day,$last_sep+1);
   
    if ( $date2 == "" ) {
        $year2     = date("Y");
        $month2 = date("m");
        $day2     = date("d");
    }else{
        $first_sep = strpos($date2,"-");
        $year2 = substr($date2,0,$first_sep);
        $part_month_day = substr($date2,$first_sep+1);   
        $last_sep = strpos($part_month_day,"-");   
        $month2 = substr( $part_month_day,0,$last_sep );
        $day2 = substr($part_month_day,$last_sep+1);
    }
    $result = ( mktime( 0, 0, 0, $month1, $day1, $year1 ) - mktime( 0, 0, 0, $month2, $day2, $year2 ) ) / ( 3600 * 24 );
    return abs($result);
}


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/17686/showart_193623.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP