2007年11月23日

摘要: function date2( $time , $format='H:i:s' ){ $h = intval($time/3600); $minSeconds = $time%3600; $i = intval($minSeconds/60); $s = $minSeconds%60; if($h<10)$h="0".$h; if($i<10)$i="0".$i; if($s<10... 阅读全文

posted @ 2007-11-23 13:07 古代 阅读(416) 评论(0) 推荐(0)