zcd97 发表于 2010-7-13 11:36:58

如何加载日历类

本帖最后由 lamtin 于 2010-7-13 14:41 编辑

为什么我加载日历类显示错误?
控制代码<?php
      class Calendar extends Controller{
                function Calendar(){
                        parent::Controller();
                        $this->load->library('calendar');
                        echo $this->calendar->generate(2006,6);
         }
         }?>

leibao 发表于 2010-7-13 14:03:07

<?php
      class Date extends Controller{
                function Calendar(){
                        parent::Controller();
                     
         }
                   function index(){
                               $this->load->library('calendar');
                        echo $this->calendar->generate(2006,6);
                   }
         }?>

访问:http://localhost/CodeIgniter/index.php/Date/

zcd97 发表于 2010-7-13 15:30:47

非常感谢,已经解决了
页: [1]
查看完整版本: 如何加载日历类