POP3::POP3() WordPress Method

The POP3::POP3() WordPress method is used to establish a connection to a POP3 server. This method takes two parameters: the server address and the port number. Once a connection is established, you can use the other methods in the POP3 class to perform various operations on the server.

POP3::POP3( $server = '',  $timeout = '' ) #

PHP4 constructor.


Source

File: wp-includes/class-pop3.php

	public function POP3( $server = '', $timeout = '' ) {
		self::__construct( $server, $timeout );
	}

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.