欢迎访问 舍力博客(www.shuyong.net)
<?php $Log_Model = new Log_Model(); $today = strtotime(date('Y-m-d'));//今天凌晨时间戳 $threeday = strtotime(date('Y-m-d',strtotime('-3 day')));//3天前凌晨时间戳 $tenday = strtotime(date('Y-m-d',strtotime('-10 day')));//10天前凌晨时间戳 $today_sql = "and date>$today"; $today_num = $Log_Model->getLogNum('n', $today_sql); $threeday_sql = "and date>$threeday"; $threeday_num = $Log_Model->getLogNum('n', $threeday_sql); $tenday_sql = "and date>$tenday"; $tenday_num = $Log_Model->getLogNum('n', $tenday_sql); if($tenday_num=='0'){echo '这博客已经废了,都10几天了,没有更新内容。';} elseif($threeday_num=='0'){echo '这博客快要荒废了,连续3天都没有更新文章了。';} elseif($today_num=='0'){echo '今日站长很懒,一篇文章都没更新。';} else{echo '今日站长很勤快,更新了'.$today_num.'篇文章哟。';} ?>
留言/评论:◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。