(Yaf >=1.0.0)
Yaf_Controller_Abstract::redirect — Redirige a un URL
Redirige a un URL enviando una cabecera 302
urlUn URL
bool
Ejemplo #1 Ejemplo de Yaf_Controller_Abstract::redirect()
<?php
class AccountController extends Yaf_Controller_Abstract
{
public function loginAction() {
if (!$this->getRequest()->getParam("user")) {
// send a Location header with HTTP status 302
$this->redirect("http://www.example.com/account/login/");
return false; // skip auto-rendering
}
}
}
?>