Yaf_Controller_Abstract::redirect

(Yaf >=1.0.0)

Yaf_Controller_Abstract::redirectRedirect to a URL

Description

public function Yaf_Controller_Abstract::redirect(string $url): ?bool

Redirects the client to another URL by sending a Location header (HTTP status 302).

Parameters

url

The URL to redirect to.

Return Values

Returns true on success, or false / null on failure.

Examples

Example #1 Yaf_Controller_Abstract::redirect() example

<?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
        }
    }
}
?>

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.