POP3::update_timer() WordPress Method

The POP3::update_timer() method is used to update the timer for a connection to a POP3 server. This is useful if you want to keep the connection alive while the user is working on something else.

POP3::update_timer() #


Source

File: wp-includes/class-pop3.php

    function update_timer () {
        set_time_limit($this->TIMEOUT);
        return true;
    }

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.