是否可以在网址中显示两个类名? 例如,我有两个类:类别和图库。
我想在网址中显示为... category/gallery/2
?
答案 0 :(得分:0)
我附上以下代码供参考。
class category extends Controller {
//php 5 constructor
function __construct() {
parent::Controller();
}
//php 4 constructor
function category() {
parent::Controller();
}
function gallery() {
$galleryId = $this->uri->segment(3);
if($galleryId==2){
//<statements>
}
}
}
category / gallery / 2将带你去。
由于