PHP模拟SMTP发送邮件的类
PHP模拟SMTP发送邮件的类
<?php
/*********************************************************
filename:mail.class.php
describe:邮箱的配置,经测试可以适用于Linux和windows
function:检查邮箱的合法性,发送基本的邮箱验证信息
author: etongchina@gmail.com
time: 2008-03-06 20:15
checked: 2008-03-11 01:03
*********************************************************/
class SEND_MAIL{
/* Public Variables */
public $smtp_port;
public $from;
public $time_out;
public $host_name;
public $log_file;
public $relay_host;
public $debug;
public $auth;//需要auth身份验证吗?
public $user;
public $pass;
private $sock;
//给类变量赋值 定义构造器
public function __construct($auth = FALSE)
{
$this->debug = FALSE;
$this->relay_host = "smtp.163.com";//服务器名称
$this->smtp_port = 25;//服务器端口 默认为25 yahoo.cn为465
$this->time_out = 30; //is used in fsockopen() 默认:30s #
$this->auth = $auth;
$this->from = "zhoufeng0128@163.com
";
$this->user = "zhoufeng0128";//邮箱用户名
$this->pass = "XXXX"; //邮箱密码
$this->host_name = "localhost"; //is used in HELO command
$this->log_file = "";
$this->sock = FALSE;
}
/* Main Function */
function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = ""){
$mail_from = $this->get_address($this->strip_comment($from));
$body = ereg_replace("(^|(\r\n))(\.)", "\1.\3", $body);
$header .= "MIME-Version:1.0\r\n";
if($mailtype=="HTML"){
$header .= "Content-
相关文档:
linux中升级php和GD库笔记
php-5.1.2.tar.gz
安装php所需的软件包
(其中libxml2是安装php5必须的,为什么还需要perl呆会说明原因。)
libxml2-2.6.19.tar.gz
libxslt-1.1.15.tar.gz
ActivePerl-5.8.8.817-i686-linux-2.2.17-gcc-257965.rpm
curl-7.15.0.tar.gz
GD库所需要软件包
(有人说PHP源码包里自 ......
get_class_methods() // 所有方法
get_included_files()//返回当前页所有加载的文件
get_declared_classes()// 返回当前页所有class
get_declared_interfaces()// 返回所有的接口
get_defined_functions()// 返回所有的function &nb ......
可以通过序列话一个数组,然后放到cookie中
从cookie中得到值,然后在反序列化,转换为数组。
$cur_goods_array = unserialize(stripslashes($_COOKIE['shop_cart_info']));
setcookie("shop_cart_info",serialize($cur_goods_array)); ......
本篇文章来源于 黑客基地-全球最大的中文黑客站 原文链接:http://hackbase.com/tech/2009-08-04/54550_1.html
2007年11月01日 星期四 下午 03:48让我们以一个简单的例子开始---一个接收输入字符串,处理并返回这个字符串到客户端的TCP服务.下面是相应的代码:PHP 代码: ------------------------------------------------ ......
使用PHP的cURL库可以简单和有效地去抓网页。你只需要运行一个脚本,然后分析一下你所抓取的网页,然后就可以以程序的方式得到你想要的数据
了。无论是你想从从一个链接上取部分数据,或是取一个XML文件并把其导入数据库,那怕就是简单的获取网页内容,cURL 是一个功能强大的PHP库。
PHP中的CURL函数库(Client URL Librar ......