1这里没有写model:代码一看就懂,没什么负杂地方,就是麻烦一点。

直接control模块的代码:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
   class calendar extends CI_Controller {   
   function __construct()
   { 
     parent::__construct();
        $this->load->helper('url');
     $prefs = array (
         'show_next_prev' => TRUE,
         'next_prev_url'  => site_url('calendar/index')
      );
     $this->load->library('calendar', $prefs);
    }
   public function index(){

//返回今天,假设今天带有数据。
   if($_GET['do']=='today'){
     $year=date('Y',time());
     $month=date('m',time());
     $data=array();
     $dbArray=array(
         3  => 'http://example.com/news/article/2006/03/',
         7  => 'http://example.com/news/article/2006/07/'
     );
   
    }
 
  if($this->uri->segment(3)&&$this->uri->segment(4)){
       $year=$this->uri->segment(3);
       $month=$this->uri->segment(4);
       if($year==date('Y')&&$month==date('m')){
       $dbArray=array(
            3  => 'http://example.com/news/article/2006/03/',
         7  => 'http://example.com/news/article/2006/07/'
        );
       }else{
       $dbArray=array();
       }
  }
   //定义数据的信息 转农历,转日志
    $dd=array();
    $dd['cal']= $this->calendar->generate($year,$month,$dbArray);
    $dd['nowurl']=site_url('calendar/index?action=jump&do=today');
    $this->load->view('calendar.php',$dd);
   }
     }
?>主要是一个调用功能。

下面是view文件和日历文件类的修改:

view(calendar.php):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>日历系统</title>
<link rel='stylesheet' type='text/css' media='all' href="<?php echo base_url('static/css/admin.css');?>"/>
</head>
 <style>
 <!--
 .cal{ width:99%;margin:0 auto;height:500px;text-align:center; }

table{
  width:1300px;height:400px;font-size:20px;color:#000;margin:0 auto;
 }

table td{
  height:30px;width:140px;border:1px solid #CCCCCC;
 }
 table td:hover{background:#89BBDE;color:#000;font-weight:bold;}

table th{ 
  height:20px;width:140px;border:1px solid #ddd;text-decoration:none;font-size:20px;
 }
 table td a{ 
  text-decoration:none;font-size:30px;width:30px;height:20px;border:1px solid #FD7B24;cursor:hand;color:#FD7B24;
 }

.rl_01{
  background:#89BBDE;height:20px;width:140px;text-align:center;color:#fff
 }
 .nl_m{
   text-decoration:none;font-size:12px;color:#ccc;
  }
 .nl_d{
   text-decoration:none;font-size:12px;color:#ccc;
  }
 h1{color:red}

.today{
  font-weight:bold;color:red;font-size:32px;
 }
 -->
 </style>
<body>
<div class="cal">
<h2><a class='md' href='<?php echo $nowurl;?>'>返回今天</a></h2>
 <?php echo $cal;?>
</div>

</body>
</html>

类文件:

<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
 * CodeIgniter
 *
 * An open source application development framework for PHP 5.1.6 or newer
 *
 * @package  CodeIgniter
 * @author  ExpressionEngine Dev Team
 * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
 * @license  http://codeigniter.com/user_guide/license.html
 * @link  http://codeigniter.com
 * @since  Version 1.0
 * @filesource
 */

// ------------------------------------------------------------------------

/**
 * CodeIgniter Calendar Class
 *
 * This class enables the creation of calendars
 *
 * @package  CodeIgniter
 * @subpackage Libraries
 * @category Libraries
 * @author  ExpressionEngine Dev Team
 * @link  http://codeigniter.com/user_guide/libraries/calendar.html
 */
 //require_once('Cal.php');
class CI_Calendar {

var $CI;
 var $lang;
 var $local_time;
 var $template  = '';
 var $start_day  = 'sunday';
 var $month_type  = 'long';
 var $day_type  = 'abr';
 var $show_next_prev = FALSE;
 var $next_prev_url = '';

/**** 农历***********/
  var $everyCMonth=array(
    0=>array(8,0,0,0,0,0,0,0,0,0,0,0,29,30,7,1),
 1=>array(0,29,30,29,29,30,29,30,29,30,30,30,29,0,8,2),

2=>array(0,30,29,30,29,29,30,29,30,29,30,30,30,0,9,3),

3=>array(5,29,30,29,30,29,29,30,29,29,30,30,29,30,10,4),

4=>array(0,30,30,29,30,29,29,30,29,29,30,30,29,0,1,5),

5=>array(0,30,30,29,30,30,29,29,30,29,30,29,30,0,2,6),

6=>array(4,29,30,30,29,30,29,30,29,30,29,30,29,30,3,7),

7=>array(0,29,30,29,30,29,30,30,29,30,29,30,29,0,4,8),

8=>array(0,30,29,29,30,30,29,30,29,30,30,29,30,0,5,9),

9=>array(2,29,30,29,29,30,29,30,29,30,30,30,29,30,6,10),

10=>array(0,29,30,29,29,30,29,30,29,30,30,30,29,0,7,11),

11=>array(6,30,29,30,29,29,30,29,29,30,30,29,30,30,8,12),

12=>array(0,30,29,30,29,29,30,29,29,30,30,29,30,0,9,1),

13=>array(0,30,30,29,30,29,29,30,29,29,30,29,30,0,10,2),

14=>array(5,30,30,29,30,29,30,29,30,29,30,29,29,30,1,3),

15=>array(0,30,29,30,30,29,30,29,30,29,30,29,30,0,2,4),

16=>array(0,29,30,29,30,29,30,30,29,30,29,30,29,0,3,5),

17=>array(2,30,29,29,30,29,30,30,29,30,30,29,30,29,4,6),

18=>array(0,30,29,29,30,29,30,29,30,30,29,30,30,0,5,7),

19=>array(7,29,30,29,29,30,29,29,30,30,29,30,30,30,6,8),

20=>array(0,29,30,29,29,30,29,29,30,30,29,30,30,0,7,9),

21=>array(0,30,29,30,29,29,30,29,29,30,29,30,30,0,8,10),

22=>array(5,30,29,30,30,29,29,30,29,29,30,29,30,30,9,11),
    23=>array(0,29,30,30,29,30,29,30,29,29,30,29,30,0,10,12),
    24=>array(0,29,30,30,29,30,30,29,30,29,30,29,29,0,1,1),

25=>array(4,30,29,30,29,30,30,29,30,30,29,30,29,30,2,2),

26=>array(0,29,29,30,29,30,29,30,30,29,30,30,29,0,3,3),

27=>array(0,30,29,29,30,29,30,29,30,29,30,30,30,0,4,4),

28=>array(2,29,30,29,29,30,29,29,30,29,30,30,30,30,5,5),

29=>array(0,29,30,29,29,30,29,29,30,29,30,30,30,0,6,6),

30=>array(6,29,30,30,29,29,30,29,29,30,29,30,30,29,7,7),

31=>array(0,30,30,29,30,29,30,29,29,30,29,30,29,0,8,8),

32=>array(0,30,30,30,29,30,29,30,29,29,30,29,30,0,9,9),

33=>array(5,29,30,30,29,30,30,29,30,29,30,29,29,30,10,10),

34=>array(0,29,30,29,30,30,29,30,29,30,30,29,30,0,1,11),

35=>array(0,29,29,30,29,30,29,30,30,29,30,30,29,0,2,12),

36=>array(3,30,29,29,30,29,29,30,30,29,30,30,30,29,3,1),

37=>array(0,30,29,29,30,29,29,30,29,30,30,30,29,0,4,2),

38=>array(7,30,30,29,29,30,29,29,30,29,30,30,29,30,5,3),

39=>array(0,30,30,29,29,30,29,29,30,29,30,29,30,0,6,4),

40=>array(0,30,30,29,30,29,30,29,29,30,29,30,29,0,7,5),

41=>array(6,30,30,29,30,30,29,30,29,29,30,29,30,29,8,6),

42=>array(0,30,29,30,30,29,30,29,30,29,30,29,30,0,9,7),

43=>array(0,29,30,29,30,29,30,30,29,30,29,30,29,0,10,8),

44=>array(4,30,29,30,29,30,29,30,29,30,30,29,30,30,1,9),

45=>array(0,29,29,30,29,29,30,29,30,30,30,29,30,0,2,10),
    46=>array(0,30,29,29,30,29,29,30,29,30,30,29,30,0,3,11),

47=>array(2,30,30,29,29,30,29,29,30,29,30,29,30,30,4,12),

48=>array(0,30,29,30,29,30,29,29,30,29,30,29,30,0,5,1),

49=>array(7,30,29,30,30,29,30,29,29,30,29,30,29,30,6,2),

50=>array(0,29,30,30,29,30,30,29,29,30,29,30,29,0,7,3),

51=>array(0,30,29,30,30,29,30,29,30,29,30,29,30,0,8,4),

52=>array(5,29,30,29,30,29,30,29,30,30,29,30,29,30,9,5),

53=>array(0,29,30,29,29,30,30,29,30,30,29,30,29,0,10,6),

54=>array(0,30,29,30,29,29,30,29,30,30,29,30,30,0,1,7),

55=>array(3,29,30,29,30,29,29,30,29,30,29,30,30,30,2,8),

56=>array(0,29,30,29,30,29,29,30,29,30,29,30,30,0,3,9),

57=>array(8,30,29,30,29,30,29,29,30,29,30,29,30,29,4,10),

58=>array(0,30,30,30,29,30,29,29,30,29,30,29,30,0,5,11),

59=>array(0,29,30,30,29,30,29,30,29,30,29,30,29,0,6,12),

60=>array(6,30,29,30,29,30,30,29,30,29,30,29,30,29,7,1),

61=>array(0,30,29,30,29,30,29,30,30,29,30,29,30,0,8,2),

62=>array(0,29,30,29,29,30,29,30,30,29,30,30,29,0,9,3),

63=>array(4,30,29,30,29,29,30,29,30,29,30,30,30,29,10,4),

64=>array(0,30,29,30,29,29,30,29,30,29,30,30,30,0,1,5),

65=>array(0,29,30,29,30,29,29,30,29,29,30,30,29,0,2,6),

66=>array(3,30,30,30,29,30,29,29,30,29,29,30,30,29,3,7),

67=>array(0,30,30,29,30,30,29,29,30,29,30,29,30,0,4,8),

68=>array(7,29,30,29,30,30,29,30,29,30,29,30,29,30,5,9),

69=>array(0,29,30,29,30,29,30,30,29,30,29,30,29,0,6,10),

70=>array(0,30,29,29,30,29,30,30,29,30,30,29,30,0,7,11),

71=>array(5,29,30,29,29,30,29,30,29,30,30,30,29,30,8,12),

72=>array(0,29,30,29,29,30,29,30,29,30,30,29,30,0,9,1),

73=>array(0,30,29,30,29,29,30,29,29,30,30,29,30,0,10,2),

74=>array(4,30,30,29,30,29,29,30,29,29,30,30,29,30,1,3),

75=>array(0,30,30,29,30,29,29,30,29,29,30,29,30,0,2,4),

76=>array(8,30,30,29,30,29,30,29,30,29,29,30,29,30,3,5),

77=>array(0,30,29,30,30,29,30,29,30,29,30,29,29,0,4,6),

78=>array(0,30,29,30,30,29,30,30,29,30,29,30,29,0,5,7),

79=>array(6,30,29,29,30,29,30,30,29,30,30,29,30,29,6,8),

80=>array(0,30,29,29,30,29,30,29,30,30,29,30,30,0,7,9),

81=>array(0,29,30,29,29,30,29,29,30,30,29,30,30,0,8,10),

82=>array(4,30,29,30,29,29,30,29,29,30,29,30,30,30,9,11),

83=>array(0,30,29,30,29,29,30,29,29,30,29,30,30,0,10,12),

84=>array(10,30,29,30,30,29,29,30,29,29,30,29,30,30,1,1),

85=>array(0,29,30,30,29,30,29,30,29,29,30,29,30,0,2,2),

86=>array(0,29,30,30,29,30,30,29,30,29,30,29,29,0,3,3),

87=>array(6,30,29,30,29,30,30,29,30,30,29,30,29,29,4,4),

88=>array(0,30,29,30,29,30,29,30,30,29,30,30,29,0,5,5),

89=>array(0,30,29,29,30,29,29,30,30,29,30,30,30,0,6,6),

90=>array(5,29,30,29,29,30,29,29,30,29,30,30,30,30,7,7),

91=>array(0,29,30,29,29,30,29,29,30,29,30,30,30,0,8,8),

92=>array(0,29,30,30,29,29,30,29,29,30,29,30,30,0,9,9),

93=>array(3,29,30,30,29,30,29,30,29,29,30,29,30,29,10,10),

94=>array(0,30,30,30,29,30,29,30,29,29,30,29,30,0,1,11),

95=>array(8,29,30,30,29,30,29,30,30,29,29,30,29,30,2,12),

96=>array(0,29,30,29,30,30,29,30,29,30,30,29,29,0,3,1),

97=>array(0,30,29,30,29,30,29,30,30,29,30,30,29,0,4,2),

98=>array(5,30,29,29,30,29,29,30,30,29,30,30,29,30,5,3),

99=>array(0,30,29,29,30,29,29,30,29,30,30,30,29,0,6,4),

100=>array(0,30,30,29,29,30,29,29,30,29,30,30,29,0,7,5),

101=>array(4,30,30,29,30,29,30,29,29,30,29,30,29,30,8,6),

102=>array(0,30,30,29,30,29,30,29,29,30,29,30,29,0,9,7),

103=>array(0,30,30,29,30,30,29,30,29,29,30,29,30,0,10,8),

104=>array(2,29,30,29,30,30,29,30,29,30,29,30,29,30,1,9),

105=>array(0,29,30,29,30,29,30,30,29,30,29,30,29,0,2,10),

106=>array(7,30,29,30,29,30,29,30,29,30,30,29,30,30,3,11),

107=>array(0,29,29,30,29,29,30,29,30,30,30,29,30,0,4,12),

108=>array(0,30,29,29,30,29,29,30,29,30,30,29,30,0,5,1),

109=>array(5,30,30,29,29,30,29,29,30,29,30,29,30,30,6,2),

110=>array(0,30,29,30,29,30,29,29,30,29,30,29,30,0,7,3),

111=>array(0,30,29,30,30,29,30,29,29,30,29,30,29,0,8,4),

112=>array(4,30,29,30,30,29,30,29,30,29,30,29,30,29,9,5),

113=>array(0,30,29,30,29,30,30,29,30,29,30,29,30,0,10,6),

114=>array(9,29,30,29,30,29,30,29,30,30,29,30,29,30,1,7),

115=>array(0,29,30,29,29,30,29,30,30,30,29,30,29,0,2,8),

116=>array(0,30,29,30,29,29,30,29,30,30,29,30,30,0,3,9),

117=>array(6,29,30,29,30,29,29,30,29,30,29,30,30,30,4,10),

118=>array(0,29,30,29,30,29,29,30,29,30,29,30,30,0,5,11),

119=>array(0,30,29,30,29,30,29,29,30,29,29,30,30,0,6,12),

120=>array(4,29,30,30,30,29,30,29,29,30,29,30,29,30,7,1)

);

##############################

#农历天干
var $mten=array("null","甲","乙","丙","丁","戊","己","庚","辛","壬","癸");    #农历地支
var $mtwelve=array("null","子(鼠)","丑(牛)","寅(虎)","卯(兔)","辰(龙)", "巳(蛇)","午(马)","未(羊)","申(猴)","酉(鸡)","戌(狗)","亥(猪)");    #农历月份
var $mmonth=array("闰","正","二","三","四","五","六","七","八","九","十","十一","十二","月");
var $mday=array("null","初一","初二","初三","初四","初五","初六","初七","初八","初九","初十","十一","十二","十三","十四","十五","十六","十七","十八","十九","二十", "廿一","廿二","廿三","廿四","廿五","廿六","廿七","廿八","廿九","三十");#农历日
##############################

#赋给初值

#天干地支

var $ten=0;

var $twelve=0;

##############################
 /**
  * Constructor
  *
  * Loads the calendar language file and sets the default time reference
  */
 public function __construct($config = array())
 {
  $this->CI =& get_instance();

if ( ! in_array('calendar_lang.php', $this->CI->lang->is_loaded, TRUE))
  {
   $this->CI->lang->load('calendar');
  }

$this->local_time = time();

if (count($config) > 0)
  {
   $this->initialize($config);
  }

log_message('debug', "Calendar Class Initialized");
 }

// --------------------------------------------------------------------

/**
  * Initialize the user preferences
  *
  * Accepts an associative array as input, containing display preferences
  *
  * @access public
  * @param array config preferences
  * @return void
  */
 function initialize($config = array())
 {
  foreach ($config as $key => $val)
  {
   if (isset($this->$key))
   {
    $this->$key = $val;
   }
  }
 }

// --------------------------------------------------------------------

/**
  * Generate the calendar
  *
  * @access public
  * @param integer the year
  * @param integer the month
  * @param array the data to be shown in the calendar cells
  * @return string
  */
 function generate($year = '', $month = '', $data = array())
 {
  // Set and validate the supplied month/year
  if ($year == '')
   $year  = date("Y", $this->local_time);

if ($month == '')
   $month = date("m", $this->local_time);

if (strlen($year) == 1)
   $year = '200'.$year;

if (strlen($year) == 2)
   $year = '20'.$year;

if (strlen($month) == 1)
   $month = '0'.$month;

$adjusted_date = $this->adjust_date($month, $year);
  
  $month = $adjusted_date['month'];
  $year = $adjusted_date['year'];

// Determine the total days in the month
  $total_days = $this->get_total_days($month, $year);

// Set the starting day of the week
  $start_days = array('sunday' => 0, 'monday' => 1, 'tuesday' => 2, 'wednesday' => 3, 'thursday' => 4, 'friday' => 5, 'saturday' => 6);
  $start_day = ( ! isset($start_days[$this->start_day])) ? 0 : $start_days[$this->start_day];

// Set the starting day number
  $local_date = mktime(12, 0, 0, $month, 1, $year);
  $date = getdate($local_date);
  $day  = $start_day + 1 - $date["wday"];

while ($day > 1)
  {
   $day -= 7;
  }

// Set the current month/year/day
  // We use this to determine the "today" date
  $cur_year = date("Y", $this->local_time);
  $cur_month = date("m", $this->local_time);
  $cur_day = date("j", $this->local_time);

$is_current_month = ($cur_year == $year AND $cur_month == $month) ? TRUE : FALSE;

// Generate the template data array
  $this->parse_template();

// Begin building the calendar output
  $out = $this->temp['table_open'];
  $out .= "\n";

$out .= "\n";
  $out .= $this->temp['heading_row_start'];
  $out .= "\n";

// "previous" month link
  if ($this->show_next_prev == TRUE)
  {
   // Add a trailing slash to the  URL if needed
   $this->next_prev_url = preg_replace("/(.+?)\/*$/", "\\1/",  $this->next_prev_url);
   $adjusted_date = $this->adjust_date($month - 1, $year);
   $out .= str_replace('{previous_url}', $this->next_prev_url.$adjusted_date['year'].'/'.$adjusted_date['month'], $this->temp['heading_previous_cell']);
   $out .= "\n";
  }

// Heading containing the month/year
  $colspan = ($this->show_next_prev == TRUE) ? 5 : 7;

$this->temp['heading_title_cell'] = str_replace('{colspan}', $colspan, $this->temp['heading_title_cell']);
  //$this->temp['heading_title_cell'] = str_replace('{heading}', $year.'年'.$this->get_month_name($month), $this->temp['heading_title_cell']);
  $this->temp['heading_title_cell'] = str_replace('{heading}', $year.'年'.$month.'月', $this->temp['heading_title_cell']);

$out .= $this->temp['heading_title_cell'];
  $out .= "\n";

// "next" month link
  if ($this->show_next_prev == TRUE)
  {
   $adjusted_date = $this->adjust_date($month + 1, $year);
   $out .= str_replace('{next_url}', $this->next_prev_url.$adjusted_date['year'].'/'.$adjusted_date['month'], $this->temp['heading_next_cell']);
  }
  
  $out .= "\n";
  $out .= $this->temp['heading_row_end'];
  $out .= "\n";

// Write the cells containing the days of the week
  $out .= "\n";
  $out .= $this->temp['week_row_start'];
  $out .= "\n";

$day_names = $this->get_day_names();

for ($i = 0; $i < 7; $i ++)
  {
   $out .= str_replace('{week_day}', $day_names[($start_day + $i) %7], $this->temp['week_day_cell']);
  }

$out .= "\n";
  $out .= $this->temp['week_row_end'];
  $out .= "\n";

// Build the main body of the calendar

while ($day <= $total_days)
  {
   $out .= "\n";
   $out .= $this->temp['cal_row_start'];
   $out .= "\n";

for ($i = 0; $i < 7; $i++)
   {
    
    
    $c=$this->Cal($year,$month,$day); //转换农历
    
    $out .= ($is_current_month == TRUE AND $day == $cur_day) ? $this->temp['cal_cell_start_today'] : $this->temp['cal_cell_start'];

if ($day > 0 AND $day <= $total_days)
    {

//echo $Year["year"]."年".$Year["month"].$Year["day"];
     if (isset($data[$day]))
     {
      // Cells with content
      $temp = ($is_current_month == TRUE AND $day == $cur_day) ? $this->temp['cal_cell_content_today'].$c["month"].$c["day"] :$this->temp['cal_cell_content'].$c["month"].$c["day"];
      $out .= str_replace('{day}', $day, str_replace('{content}', $data[$day], $temp));
     }
     else
     {
      // Cells with no content
     $temp = ($is_current_month == TRUE AND $day == $cur_day) ? $this->temp['cal_cell_no_content_today'] : $this->temp['cal_cell_no_content'].$c["month"].$c["day"];
      $out .= str_replace('{day}', $day, $temp);
     }
      
    }
    else
    {
      // Blank cells
      $out .= $this->temp['cal_cell_blank'];
   }
    $out .= ($is_current_month == TRUE AND $day == $cur_day) ? $this->temp['cal_cell_end_today'] : $this->temp['cal_cell_end'];     
    $day++;
   }

$out .= "\n";
   $out .= $this->temp['cal_row_end'];
   $out .= "\n";
  }

$out .= "\n";
   $out .= $this->temp['table_close'];
  
   return $out;
 }

// --------------------------------------------------------------------
 /**
  * Get Month Name
  *
  * Generates a textual month name based on the numeric
  * month provided.
  *
  * @access public
  * @param integer the month
  * @return string
  */
 function get_month_name($month)
 {
  if ($this->month_type == 'short')
  {
   $month_names = array('01' => 'cal_jan', '02' => 'cal_feb', '03' => 'cal_mar', '04' => 'cal_apr', '05' => 'cal_may', '06' => 'cal_jun', '07' => 'cal_jul', '08' => 'cal_aug', '09' => 'cal_sep', '10' => 'cal_oct', '11' => 'cal_nov', '12' => 'cal_dec');
  }
  else
  {
   $month_names = array('01' => 'cal_january', '02' => 'cal_february', '03' => 'cal_march', '04' => 'cal_april', '05' => 'cal_mayl', '06' => 'cal_june', '07' => 'cal_july', '08' => 'cal_august', '09' => 'cal_september', '10' => 'cal_october', '11' => 'cal_november', '12' => 'cal_december');
  }

$month = $month_names[$month];

if ($this->CI->lang->line($month) === FALSE)
  {
   return ucfirst(str_replace('cal_', '', $month));
  }

return $this->CI->lang->line($month);
 }

// --------------------------------------------------------------------

/**
  * Get Day Names
  *
  * Returns an array of day names (Sunday, Monday, etc.) based
  * on the type.  Options: long, short, abrev
  *
  * @access public
  * @param string
  * @return array
  */
 function get_day_names($day_type = '')
 {
  if ($day_type != '')
   $this->day_type = $day_type;

if ($this->day_type == 'long')
  {
   $day_names = array('sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday');
  }
  elseif ($this->day_type == 'short')
  {
   $day_names = array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat');
  }
  else
  {
   $day_names = array('su', 'mo', 'tu', 'we', 'th', 'fr', 'sa');
  }

$days = array();
  foreach ($day_names as $val)
  {
   $days[] = ($this->CI->lang->line('cal_'.$val) === FALSE) ? ucfirst($val) : $this->CI->lang->line('cal_'.$val);
  }
  return $days;
 }

// --------------------------------------------------------------------

/**
  * Adjust Date
  *
  * This function makes sure that we have a valid month/year.
  * For example, if you submit 13 as the month, the year will
  * increment and the month will become January.
  *
  * @access public
  * @param integer the month
  * @param integer the year
  * @return array
  */
 function adjust_date($month, $year)
 {
  $date = array();

$date['month'] = $month;
  $date['year'] = $year;

while ($date['month'] > 12)
  {
   $date['month'] -= 12;
   $date['year']++;
  }

while ($date['month'] <= 0)
  {
   $date['month'] += 12;
   $date['year']--;
  }

if (strlen($date['month']) == 1)
  {
   $date['month'] = '0'.$date['month'];
  }

return $date;
 }

// --------------------------------------------------------------------

/**
  * Total days in a given month
  *
  * @access public
  * @param integer the month
  * @param integer the year
  * @return integer
  */
 function get_total_days($month, $year)
 {
  $days_in_month = array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);

if ($month < 1 OR $month > 12)
  {
   return 0;
  }

// Is the year a leap year?
  if ($month == 2)
  {
   if ($year % 400 == 0 OR ($year % 4 == 0 AND $year % 100 != 0))
   {
    return 29;
   }
  }

return $days_in_month[$month - 1];
 }

// --------------------------------------------------------------------

/**
  * Set Default Template Data
  *
  * This is used in the event that the user has not created their own template
  *
  * @access public
  * @return array
  */
 function default_template()
 {
  return  array (
      'table_open'    => '<table border="0" cellpadding="4" cellspacing="0">',
      'heading_row_start'   => '<tr>',
      'heading_previous_cell'  => '<th><a href="{previous_url}">&lt;&lt;</a></th>',
      'heading_title_cell'  => '<th colspan="{colspan}">{heading}</th>',
      'heading_next_cell'   => '<th><a href="{next_url}">&gt;&gt;</a></th>',
      'heading_row_end'   => '</tr>',
      'week_row_start'   => '<tr class="rl_01">',
      'week_day_cell'    => '<th>{week_day}</th>',
      'week_row_end'    => '</tr>',
      'cal_row_start'    => '<tr>',
      'cal_cell_start'   => '<td>',
      'cal_cell_start_today'  => '<td>',
      'cal_cell_content'   => '<a href="{content}">{day}</a>',
      'cal_cell_content_today' => '<a href="{content}" class="today"><strong>{day}</strong></a>',
      'cal_cell_no_content'  => '{day}',
      'cal_cell_no_content_today' => '<span style="color:red" title="This is today! ">{day}</span>',
      'cal_cell_blank'   => '&nbsp;',
      'cal_cell_end'    => '</td>',
      'cal_cell_end_today'  => '</td>',
      'cal_row_end'    => '</tr>',
      'table_close'    => '</table>'
     );
 }

// --------------------------------------------------------------------

/**
  * Parse Template
  *
  * Harvests the data within the template {pseudo-variables}
  * used to display the calendar
  *
  * @access public
  * @return void
  */
 function parse_template()
 {
  $this->temp = $this->default_template();

if ($this->template == '')
  {
   return;
  }

$today = array('cal_cell_start_today', 'cal_cell_content_today', 'cal_cell_no_content_today', 'cal_cell_end_today');

foreach (array('table_open', 'table_close', 'heading_row_start', 'heading_previous_cell', 'heading_title_cell', 'heading_next_cell', 'heading_row_end', 'week_row_start', 'week_day_cell', 'week_row_end', 'cal_row_start', 'cal_cell_start', 'cal_cell_content', 'cal_cell_no_content',  'cal_cell_blank', 'cal_cell_end', 'cal_row_end', 'cal_cell_start_today', 'cal_cell_content_today', 'cal_cell_no_content_today', 'cal_cell_end_today') as $val)
  {
   if (preg_match("/\{".$val."\}(.*?)\{\/".$val."\}/si", $this->template, $match))
   {
    $this->temp[$val] = $match['1'];
   }
   else
   {
    if (in_array($val, $today, TRUE))
    {
     $this->temp[$val] = $this->temp[str_replace('_today', '', $val)];
    }
   }
  }
 }

function MyPub($cYear,$cMonth,$cDay)

{

$total=11;#阳历总天数 至1900年12月21日

$mtotal=0;#阴历总天数

for ($y=1901;$y<$cYear;$y++)

{

$total+=365;

if ($y%4==0) $total ++;

}
        #再加当年的几个月
        switch ($cMonth){
                 case 12:
                      $total+=30;
                 case 11:
                      $total+=31;
                 case 10:
                      $total+=30;
                 case 9:
                      $total+=31;
                 case 8:
                      $total+=31;
                 case 7:
                      $total+=30;
                 case 6:
                      $total+=31;
                 case 5:
                      $total+=30;
                 case 4:
                      $total+=31;
                 case 3:
                      $total+=28;

case 2:
                      $total+=31;
               }
            #如果当年是闰年还要加一天
            if ($cYear%4==0 and $cMonth>2)
            {
                $total++;
            }
            $total+=$cDay-1;
            ##############################

#用农历的天数累加来判断是否超过阳历的天数
            for($j=0;$j<=120;$j++)
            {
                $i=1;
                for($i=1;$i<=13;$i++)
                {
                    $mtotal+=$this->everyCMonth[$j][$i];
                    if ($mtotal>=$total)
                    {
                        $flag=1;
                        break;
                    }
                }
                if ($flag==1)break;
            }
                    return array("m"=>$j,"d"=>$i,"t"=>$total,"n"=>$mtotal);
    }

function Cal($Year,$Month,$Day)
    {
        $Par=$this->MyPub($Year,$Month,$Day);
        $md=$this->everyCMonth[$Par["m"]][$Par["d"]]-($Par["n"]-$Par["t"]);

$week=($Par["t"]+5)%7;

if ($this->everyCMonth[$Par["m"]][0]<>0 and $this->everyCMonth[$Par["m"]][0]<$Par["d"])

{

$mm=$Par["d"]-1;

}else{

$mm=$Par["d"];

}

if ($Par["d"]==$this->everyCMonth[$Par["d"]][0]+1 and $this->everyCMonth[$Par["d"]][0]<>0)

{

$cMonth=$this->mmonth[0].$this->mmonth[$mm];#闰月

}else{

$cMonth=$this->mmonth[$mm].$this->mmonth[13];

}

return array("year"=>"<div class='nl'>".$this->mten[$this->everyCMonth[$Par["m"]][14]].$this->mtwelve[$this->everyCMonth[$Par["m"]][15]]."</div>",

"month"=>"<div class='nl_m'>".$cMonth."</div>",

"day"=>"<div class='nl_d'>".$this->mday[$md]."</div>",

"week"=>$week);

}

}

// END CI_Calendar class

/* End of file Calendar.php */
/* Location: ./system/libraries/Calendar.php */

基于ci框架 修改出来了一个带农历的万年历。的更多相关文章

  1. PHP RBAC权限控制,基于CI框架(版本3.1.9)

    2018年11月7日更新:目前功能已做到事件级别权限控制,如:后台用户的添加操作.删除操作和保存操作等具体到事件级的操作方法有权限则展示相应的操作菜单,没权限则隐藏相应菜单或提示无权限到目前算是真正做 ...

  2. ci框架——修改分页的显示样式

    修改ci框架分页的显示样式 用过ci框架的都知道,ci框架自带的分页样式是1,2下一页,在最开始刷新页面现实的时候如果页面不够多的话,那么首页和末页是不显的,这是ci框架的一个缺点, 这个时候需要我们 ...

  3. 基于CI框架的管理系统

    1:ci框架是有入口文件的,前端和后台入口文件(index.php,admin.php):里面修改$application_folder = 'application/home': 2:项目基本都是在 ...

  4. php获取json文件数据并动态修改网站头部文件meta信息 --基于CI框架

    话不多说了.直接开始吧  (如果有中文.请注意json只认utf-8编码) 首先你需要有一个json文件数据 {        "index": {                ...

  5. 专家动态页面的实现——php基于CI框架的学习(二)

    以下是本次学习的页面 打开相关文件,整个定义了一个Expert类 class Expert extends CI_Controller{} 在Expert类里定义了几个参数以及说明其使用了哪些mode ...

  6. php获取服务器和mysql等信息输出到页面(基于ci框架)

    function show($varName) {    switch($result = get_cfg_var($varName)) {     case 0:      return '< ...

  7. PHP的CI框架流程基本熟悉

    CI框架是PHP的一个快速开发框架,我是目前的公司项目后台语言用的PHP,因为我做前端开发,需要用php去填充页面数据,所以就开始去了解这个框架,学习了一些php和数据库的东西,这篇文章先具体介绍CI ...

  8. nginx location匹配顺序及CI框架的nginx配置

    Nginx location匹配顺序如下: 用前缀字符串定义的location规则对URI进行匹配测试. =号定义了精确的前缀字符串匹配,如果发现精确匹配则使用当前规则.否则继续下一步匹配. 匹配其它 ...

  9. CodeIgniter (CI)框架中的数据库查询汇总

    引言: 前两天业务涉及到一个拉取答题排行榜的需求,数据库里数据是这样的: 同一个人可能提交过多次成绩,所以同一个人可能会有多次记录: 同一个人提交的多次成绩中可能有至少两次成绩是一样的. 于是,查询的 ...

随机推荐

  1. Python创建命令行应用的工具 tools for command line application in python

    工具1:Docopt 地址:http://docopt.org/ 这个工具是根据模块的文档注释来确定参数的.注释分为两部分:Usage, option. \``` Usage: naval_fate ...

  2. 程序Dog的大梦想

    一.我是程序狗 "怎么又是任宏啊,每天都起这么早,要命啊--" "人家任宏可是要成为学霸的男人,咱们这些凡夫俗子啊,理解不了这么伟大的理想--"----微电影& ...

  3. 【系统安装】如何在VMware软件中安装ghost格式的系统

    一.安装准备 1.系统虚拟环境软件:VMware软件(下载链接) 2.系统镜像制作软件:UltraISO[软碟通是光盘映像文件制作/编辑/转换工具](下载链接) 3.系统安装辅助软件:Win7PE(下 ...

  4. Spring framework体系架构

    Spring3.x 图中将spring分为5个部分:core.aop.data access.web.test,图中每个圆角矩形都对应一个jar,如果在maven中配置,所有这些jar的"g ...

  5. 移除手机端a标签点击自动出现的边框和背景

    手机端a标签会自动补充出现边框或者背景,使得用户知道a标签的点击状态,但样式很不好看 <!DOCTYPE html> <html> <head> <meta ...

  6. 吴裕雄--天生自然ShellX学习笔记:Shell 数组

    数组中可以存放多个值.Bash Shell 只支持一维数组(不支持多维数组),初始化时不需要定义数组大小(与 PHP 类似). 与大部分编程语言类似,数组元素的下标由0开始. Shell 数组用括号来 ...

  7. flask框架-上

    flask简介 Flask是一个使用 Python 编写的轻量级 Web 应用框架.其 WSGI 工具箱采用 Werkzeug ,模板引擎则使用 Jinja2 .Flask使用 BSD 授权. Fla ...

  8. LeetCode——199. 二叉树的右视图

    给定一棵二叉树,想象自己站在它的右侧,按照从顶部到底部的顺序,返回从右侧所能看到的节点值. 示例: 输入: [1,2,3,null,5,null,4] 输出: [1, 3, 4] 解释: 1 < ...

  9. android上线之前代码混淆加密

    https://blog.csdn.net/zuiwuyuan/article/details/48552701# https://blog.csdn.net/chaoyu168/article/de ...

  10. 利用GIt命令上传项目到GitHub指定仓库

    1.建立GIt可管理的仓库 cd到本地项目根目录下,执行 git init 命令: git init 2.将项目的所有文件添加到仓库中(注意add后面有一个“ . ”) git add . 3.将上一 ...