phalcon重定向 页面跳转

$params['page'] = $page;

return $this->dispatcher->forward(array(

    "controller" => "index",
    "action" => "index",
    "params" => $params
));

代表跳转到index控制器中的index方法,params为参数

注意这里前面一定要加return 不然没有用的

网上看到的一些资料都没有加return

你可能感兴趣的:(PHP)