HTTP | HTTP_Client |
HTTP | |
PEAR Manual | |
require_once 'HTTP.php'; |
void HTTP::redirect (
string url
)
This function redirects the client. This is done by issuing a Location: header and exiting.
Redirecting to another site
|
Local redirect
|
string $url - the new URL, where to client should be redirected to.
This function can be called statically.
Avoid sending any kind of data to the client before calling redirect().
The location header requires an absolute URL. If not given, redirect() tries to build one from $url . So if the redirect fails, set the absolute URL manually as argument.
HTTP | HTTP_Client |
HTTP | |
PEAR Manual | |