backwang 发表于 2014-3-21 10:33:36

calendar类无法加载显示

<?php
if (! defined ( 'BASEPATH' ))
        exit ( 'No direct script access allowed' );


class Calendar extends CI_Controller {
        function __construct() {
                parent::__construct ();
               
                $this->load->library('calendar');
                $this->calendar->generate();
               
        }
        public function index() {
                $this->load->view ( 'component/calendar' );
        }
}
?>


以上是我的代码,用的是最新版的CI,为什么浏览器返回"NetworkError: 500 Internal Server Error,要用这个日历类还需要配置什么地方吗?
页: [1]
查看完整版本: calendar类无法加载显示