应该使用Controller Argument
原文链接:https://www.f2er.com/php/137357.htmlfunction view($post_id) { ... }
或者uri->段
function view() { ... $post_id = $this->uri->segment(3); ... }