网站开发技术

记点笔记、 学点技术 欢迎交流建站技术。本站关注lamp技术

您尚未登录。

#1 2014-11-18 11:52:06

admin
管理员

创建自己的第一个一个控制器

从hello ci 开始吧。

设置一个控制器的名字是 hello.

所有的控制器文件都写在文件夹  application/controllers 这个是有系统规定的。

创建一个文件  application/controllers/hello.php

<?php
class hello extends CI_Controller {
    public function index() {
        echo "hello ci index";
    }
    
    public function other() {
        echo "hello ci other";
    }
}

保存后, 在浏览器中写入

http://localhost/ipbbs/index.php/hello

http://localhost/ipbbs/index.php/hello/index

输出结果

hello ci index

发现返回的内容是一样的, 说明 , 默认的方法是  index

http://localhost/ipbbs/index.php/hello/other 

输出的结果

echo "hello ci other";

这里可以看到url的格式 


控制器加上+方法的名字


ipbbs.net

离线

页脚

Powered by FluxBB