POP3::update_timer()
Метод класса: POP3{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$POP3 = new POP3(); $POP3->update_timer ();
Код POP3::update_timer() POP3::update timer WP 6.8
function update_timer () { // Extend POP3 request timeout to the specified TIMEOUT property. if(function_exists("set_time_limit")){ set_time_limit($this->TIMEOUT); } return true; }