yii中頁面跳轉與傳值:
1、在同一個Controller中頁面跳轉
$this->render('view页面',array('参数'=>'值')); $this->render('news',array('result'=>'123','result1'=>'456'));
url重定向
##$this->redirect(array('action方法')); $this->redirect(array('getnews','id'=>1,,,,));
2、在不同的Controller中頁面跳轉$this->redirect(array('跳转到的controller/跳转到的controller里的action','参数'=>'值',,,,));
$this->redirect(array('user/getuser','id'=>1));
PHP中文網,有大量免費的
以上是yii頁面跳轉怎麼傳值的詳細內容。更多資訊請關注PHP中文網其他相關文章!