是否可以在 url 中显示两个类名?例如我有两个类:类别和画廊。
我想在 url 中显示为 ... category/gallery/2
?
嗯.. 据我所知,你不能有 2 个这样的课程。但是你可以做的是有一个名为“Category”的类,里面有一个名为“Gallery”的函数。在其中,您可以使用 uri 段获得值 2。
我附上了以下代码以供参考。
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 将带您到 .
谢谢