Time redirection in cakePHP ?

前端 未结 3 1883
囚心锁ツ
囚心锁ツ 2021-01-26 04:05

header(\"refresh:5; url=\'pagetoredirect.php\'\");

we can use this if we want to redirect our page in 5 second ,

is there any way to redirect page in 5 second in

3条回答
  •  借酒劲吻你
    2021-01-26 04:27

    You could try with AppController header() method:

    http://api.cakephp.org/class/app-controller#method-AppControllerheader

    In your controller:

    class CarController{
       public function add(){
          $this->header("") //Implemented on AppController::header
       }
    }
    

提交回复
热议问题