CodeIgniter 避免 controller 與 model 命名衝突
2010 Oct 05 未分類
用 CodeIgniter 常會遇到一個問題
有個Controller叫做 News
有個Model也叫做 News
實在是不知道怎麼改才好
................
在網路上找到一篇文章在講這個問題的解法
原始位置如下
http://www.dgpower.net/index.php/home/showonews/173
使用這個技巧要達到的目標:
一般來說,模型和控制器你都不會有相同的類名字。 讓我先創建一個取名為post的model。
class Post extends Model {
// ...
}
現在你就不能有一個像這樣的url:
http://www.mysite.com/post/display/13
這個原因是因為你也需要有一個名字為post的controller,如果創建了這樣的一個類的話將會引起致命錯誤。
但是使用了這個技巧一般,一切皆有可能。 那個url的控制器看起來是這樣的:
// application/controllers/post.php
class Post_controller extends Controller {
// ...
}
注意這個“__controller”後綴
技巧:
為了避免這個問題,通常大多數人都是添加'_model'後綴到model名字(例如命名Post_model)。
在所有的應用程序中Model對像都被創建和引用,所以在所有的model名字後面跟上'_model'有些無聊。
我認為最好的辦法就是在controller上來添加後綴,因為在代碼中controller的名字幾乎從來不會被引用。
首先我們需要繼承Router class。 創建這樣一個文件:"application/libraries/MY_Router.php"
class MY_Router extends CI_Router {
var $suffix = '_controller';
function MY_Router() {
parent::CI_Router();
}
function set_class($class) {
$this->class = $class . $this->suffix;
}
function controller_name() {
if (strstr($this->class, $this->suffix)) {
return str_replace($this->suffix, '', $this->class);
}
else {
return $this->class;
}
}
}
現在編輯"system/codeigniter/CodeIgniter.php"第153行
if ( ! file_exists(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->controller_name().EXT))
然後第158行
include(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->controller_name().EXT);
然後編輯"system/libraries/Profiler.php"的第323行
$output .= "<div style="color:#995300;font-weight:normal;padding:4px 0 4px 0">".$this->CI->router->controller_name()."/".$ this->CI->router->fetch_method()."</div>";
大功告成。 使用這個技巧一定需要記住的是要把'_controller'後綴放到你的controller的類的名字後面,不是放在你的控制器文件名中。