摘要:
CharSet = "utf-8"; //设置采用utf-8中文编码(内容不会乱码)$mail->IsSMTP(); //设置采用SMTP方式发送邮件$mail->Host = "smtp.qq.com"; //设置邮件服务器的地址(若为163邮箱,则是smtp.163.com)$mail->Port = 25; //设置邮件服务器的端口,默认为25$mail->From = "发件人"; //设置发件人的邮箱地址$mail->FromName = "收件人姓名"; //设置发件人的姓 阅读全文
摘要:
页面设置上传文件: 函数处理file.class.phpfileName_str=$fileName_str; $this->fileOpenMethod_str=$fileOpenMethod_str; } function __destruct() { //析构函数 } public function __get($valName_val)//欲取得的数据成员名称 { //特殊函数,取得指定名称数据成员的值 return $this->$valName_val; } private function on_error($errMsg_str='Unkown ... 阅读全文