POP3::update_timer
Method of the class: POP3{}
No Hooks.
Returns
null. Nothing (null).
Usage
$POP3 = new POP3(); $POP3->update_timer ();
POP3::update_timer() POP3::update timer code WP 6.8.3
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;
}