Yaf_Controller_Abstract::redirect
(Since Yaf 1.0.0.5)
public boolean Yaf_Controller_Abstract::redirect( string $url );
重定向请求到新的路径
$url
要定向的路径
成功返回Yaf_Controller_Abstract, 失败返回FALSE
例 11.56. Yaf_Controller_Abstract::redirect 的例子
<?php class IndexController extends Yaf_Controller_Abstract { public funciton init() { if($user_not_login) $this->redirect("/login/"); } } ?>