MailPop3.object
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
- <?php
- class MailPop3 extends BaseObject {
- var $user_name;
- var $password;
- var $server;
- var $port;
- var $connection_string;
- var $connected;
- Function MailPop3( $user_name = '', $password = '', $server = '', $port = '' ) {
- $this->user_name = '';
- $this->password = '';
- $this->server = '';
- $this->port = '';
- if ( $user_name != '' ) {
- $this->user_name = $user_name;
- }
- if ( $password != '' ) {
- $this->password = $password;
- }
- if ( $server != '' ) {
- $this->server = $server;
- }
- if ( $port != '' ) {
- $this->port = $port;
- }
- $this->connection_string = '';
- $this->connected = 0;
- }
- Function CopySettings() {
- }
- Function Connect() {
- if ( $this->server_port == '' ) {
- $this->server_port = 110;
- }
- }
- }
- ?>