用户
 找回密码
 入住 CI 中国社区
搜索
12
返回列表 发新帖
楼主: yunnysunny
收起左侧

[中级] 《php敏捷开发框架codeigniter》word版

  [复制链接]
发表于 2011-12-2 11:55:15 | 显示全部楼层
感谢楼主
发表于 2012-2-9 15:54:04 | 显示全部楼层
看看再说!
发表于 2012-6-21 14:40:15 | 显示全部楼层
好资源,分享一下
发表于 2012-7-19 16:07:32 | 显示全部楼层
先感谢一下!个人还是觉得word的比较舒服。
chm板子上不好看咯。
发表于 2013-6-4 18:52:51 | 显示全部楼层
各位  ,我是新手,请教一个问题,今天看到第三章,按照上面的实例,在自己电脑进行操作,结果报错,请大家指教,谢谢,报错信息:
-----------------------------------------------------------------------------------------------------------
Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in D:\aptool\web\CodeIgniter\application\controllers\start.php on line 5 ,
------------------------------------------------------------------------------------------------------------
start.php :
----------------------------------------------------------------------------------------------------------->
<?php
class Start extends CI_Controller {
    var $base;
    var $css;
    $this->config->item('name_of_config_variable');
    function Start()
    {
      parent::CI_Controller();
      $this->base = $this->config->item('base_url');
      $this->css = $this->config->item('css');
    }
    function hello($name)
    {
      $data['css'] = $this->css;
      $data['base'] = $this->base;
      $data['mytitle'] = 'Welcome to this site';
      $data['mytext'] = "Hello, $name, now we're getting dynamic!";
      $this->load->view('testview', $data);
    }
}  
------------------------------------------------------------------------------------------------------------------
是不是因为此文档太老,新的CI版本有很大的变更,改如何修改?

本版积分规则