Response::is_redirect(): boolean

In this article

Is the response a redirect?

Return

boolean True if redirect (3xx status), false if not.

Source

public function is_redirect() {
	$code = $this->status_code;
	return in_array($code, [300, 301, 302, 303, 307], true) || $code > 307 && $code < 400;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.