页次: 1
从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
离线
页次: 1