update_timer example


        return true;
    }

    /** * PHP4 constructor. */
    public function POP3( $server = '', $timeout = '' ) {
        self::__construct( $server$timeout );
    }

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

    function connect ($server$port = 110)  {
        // Opens a socket to the specified server. Unless overridden,         // port defaults to 110. Returns true on success, false on fail
        // If MAILSERVER is set, override $server with its value.
Home | Imprint | This part of the site doesn't use cookies.