頁跳到使用到CodeIgniter的redirect方法,需要引入url輔助函數,傳參範例如下:
public function test_redirect() { $this->load->helper('url'); redirect("/test/test_redirect_output?name=10"); } public function test_redirect_output() { $name = $this->input->get('name'); echo "test_redirect hello:" . $name; }
以上就介紹了CodeIgniter頁面redirect傳參,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。