我正在为我的图片网站编写一个控制面板。我有一个名为 category 的控制器,如下所示:
class category extends ci_controller
{
function index(){}// the default and when it called it returns all categories
function edit(){}
function delete(){}
function get_posts($id)//to get all the posts associated with submitted category name
{
}
}
我需要的是,当我调用时,我http://mysite/category/category_name
无需调用 get_posts() 方法即可获得所有帖子,而不必从 url 调用它。
我想在不使用 .haccess 文件或路由的情况下做到这一点。
有没有办法在 CodeIgniter 中动态创建方法?