用户
 找回密码
 入住 CI 中国社区
搜索
楼主: Hex
收起左侧

CodeIgniter 的基本架构

    [复制链接]
 楼主| 发表于 2007-11-12 09:43:59 | 显示全部楼层
PHP复制代码
/*
|--------------------------------------------------------------------------
| Enable Query Strings
|--------------------------------------------------------------------------
|
| By default CodeIgniter uses search-engine friendly segment based URLs:
| www.your-site.com/who/what/where/
|
| You can optionally enable standard query string based URLs:
| www.your-site.com?who=me&what=something&where=here
|
| Options are: TRUE or FALSE (boolean)
|
| The two other items let you set the query string "words" that will
| invoke your controllers and its functions:
| www.your-site.com/index.php?c=controller&m=function
|
| Please note that some of the helpers won't work as expected when
| this feature is enabled, since CodeIgniter is designed primarily to
| use segment based URLs.
|
*/

$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
复制代码

在 config.php 里设置,$config['enable_query_strings'] = TRUE; 就可以使用 URL 参数了,下面两个选项是控制器用c=xxxx,控制器方法用m=xxxx,上面的注释说的也很清楚。
发表于 2007-12-15 09:14:04 | 显示全部楼层
恩。。觉得两种url传参数的方式都不错。。。。:)
发表于 2008-3-7 09:16:52 | 显示全部楼层
建议还是适用分段传递参数的方法,这样更好,适合SEO的胃口。
发表于 2008-3-24 10:14:32 | 显示全部楼层
谢谢分享,收到了,继续加油
发表于 2008-4-12 15:09:08 | 显示全部楼层
得考虑以后的REST。
发表于 2008-5-13 10:40:32 | 显示全部楼层
嘿嘿 不错哦                  
发表于 2008-5-28 21:39:47 | 显示全部楼层
跟JAVA的MVC实现起来还是挺像的,呵呵~
发表于 2008-5-28 21:42:22 | 显示全部楼层
对CI的事务机制的实现更感觉兴趣,有空一定会看一下
发表于 2008-6-11 22:02:46 | 显示全部楼层

总数怎么能用$id啊?

既然数据是存放在数据库中,总会有GRUD的操作吧?从中间删掉几条记录,你取的$id还能是总数吗?
发表于 2008-7-15 15:14:37 | 显示全部楼层
感谢hex提供这么详细的教程

本版积分规则