Home >Backend Development >PHP Tutorial > CodeIgniter 控制层文件互相跳方法有关问题

CodeIgniter 控制层文件互相跳方法有关问题

WBOY
WBOYOriginal
2016-06-13 12:31:38951browse

CodeIgniter 控制层文件互相跳方法问题
在controllers层里面有两个文件:
login.php
    public function index() {
         //跳到logintwo.php里面的index
}

----------------------------------------------
logintwo.php

 public function index() {
        var_dump("asdfasdf");
        $this->view('test',$this->getpagedata());
}

--------------------------
我之前用的方法是
 redirect(base_url('logintwo'));但是还是在本页面刷新了一遍而已,根本没有进入logintwo index 方法来

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn