CakePHP redirect函数
Posted yangzailu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CakePHP redirect函数相关的知识,希望对你有一定的参考价值。
public function getContract($value=‘‘){ App::uses ( ‘UserContractController‘, ‘Controller‘ ); $Contract = new UserContractController(); $pdfs = $Contract->getContract(1); if($pdfs[‘code‘]!=1){ exit("<script>alert(‘".$pdfs[‘msg‘]."‘);</script>"); } $this->redirect($pdfs[‘msg‘]);die; }
redirect函数
redirect
string $url
用户重定向,通过此方法告诉你的用户应该继续访问什么地方。这里传入的URL参数可以是一个Cake内部URL,也可以是一个完整的URL()。此方法是把url发送的浏览,然后重新请求
以上是关于CakePHP redirect函数的主要内容,如果未能解决你的问题,请参考以下文章
没有 URL 重写的 CakePHP:将 / 重定向到 index.php
golang http.Redirect()函数容易误解的地方