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 ); }
Expand full source codeCollapse full source codeView on TracView on GitHub