Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17226 программистов и 1834 робота. Сейчас ищут 1668 программистов ...
HTTP_Client::setMaxRedirects()
Вернуться к: HTTP_Client
HTTP_Client::setMaxRedirects()
HTTP_Client::setMaxRedirects() – Sets the maximum number of redirects that will be processed.
Synopsis
require_once 'HTTP/Client.php';
void HTTP_Client::setMaxRedirects ( int $value )
Setting this value to 0 disables redirect processing. If it is not 0 and the number of redirects after a request is bigger than this number, then an error will be raised.
Parameter
- integer $value
-
Max number of redirects to process
Throws
throws no exceptions thrown
Note
This function can not be called statically.
Вернуться к: HTTP_Client