PHP讀取、解析eml文件及生成網(wǎng)頁的方法示例
本文實(shí)例講述了PHP讀取、解析eml文件及生成網(wǎng)頁的方法。分享給大家供大家參考,具體如下:
php讀取eml實(shí)例,本實(shí)例可以將導(dǎo)出eml文件解析成正文,并且可以將附件保存到服務(wù)器。不多說直接貼代碼了。
<?php // Author: richard e42083458@163.com // gets parameters error_reporting(E_ALL ^ (E_WARNING|E_NOTICE)); header("Content-type: text/html; charset=utf-8"); echo "<pre>"; define(EML_FILE_PATH,'./yjdata/'); //if ($filename == '') $filename = '21724696_niuyufu@qiaodazhao.com_ZC4422-r7GMz_R9QF3K6XUhmJOXd4c.eml'; //if ($filename == '') $filename = '21724696_niuyufu@qiaodazhao.com_ZC3218-dGquMgm7ytdF6HQgpSReC4c.eml'; //if ($filename == '') $filename = '163.eml'; //if ($filename == '') $filename = '166.eml'; //if ($filename == '') $filename = 'nyf.eml'; //if ($filename == '') $filename = 'email_header_icon.eml'; if ($filename == '') $filename = '20141230133705.eml'; $eml_file = EML_FILE_PATH.$filename; if (!($content = fread(fopen(EML_FILE_PATH.$filename, 'rb'), filesize(EML_FILE_PATH.$filename)))) die('File not found ('.EML_FILE_PATH.$filename.')'); //標(biāo)題內(nèi)容 $pattern="/Subject: (.*?)\n/ims"; preg_match($pattern,$content,$subject_results); $subject = getdecodevalue($subject_results[1]); echo "標(biāo)題:".$subject; //發(fā)件人: $pattern="/From: .*?<(.*?)>/ims"; preg_match($pattern,$content,$from_results); $from = $from_results[1]; echo "\n\r"; echo "發(fā)件人:".$from; //收件人: $pattern="/To:(.*?):/ims"; preg_match($pattern,$content,$to_results); $pattern="/<(.*?)>/ims"; preg_match_all($pattern,$to_results[1],$to_results2); if(count($to_results2[1])>0){ $to = $to_results2[1]; }else{ $pattern="/To:(.*?)\n/ims"; preg_match($pattern,$content,$to_results); $to = $to_results[1]; } echo "\n\r"; echo "收件人:"; print_r($to); echo "\n\r"; //正文內(nèi)容 $pattern = "/Content-Type: multipart\/alternative;.*?boundary=\"(.*?)\"/ims"; preg_match($pattern,$content,$results); if($results[1]!=""){ $seperator = "--".$results[1]; }else{ die("boundary匹配失敗"); } $spcontent = explode($seperator, $content); $items = array(); $keyid = 0; $email_front_content_array = array(); foreach($spcontent as $spkey=>$item) { //匹配header編碼等信息 $pattern = "/Content-Type: ([^;]*?);.*?charset=(.*?)\nContent-Transfer-Encoding: (.*?)\n/ims"; preg_match($pattern,$item,$item_results); if(count($item_results)==4){ $Content_code = str_replace($item_results[0],"",$item); $item_results[4] = $Content_code; if(trim($item_results[3])=="base64"){ $item_results[5] = base64_decode($item_results[4]); } if(trim($item_results[3])=="quoted-printable"){ $item_results[5] = quoted_printable_decode($item_results[4]); } $item_results[5] = mb_convert_encoding($item_results[5], 'UTF-8', trim($item_results[2])); //echo $item_results[5];exit; $email_front_content_array[] = $item_results; } } foreach ($email_front_content_array as $email_front_content_each_key=>$email_front_content_each_value){ if($email_front_content_each_value[1]=='text/html'){ $content_html = $email_front_content_each_value[5]; break; }else{ $content_html = $email_front_content_each_value[5]; } } echo "內(nèi)容:"; echo "\n\r"; echo $content_html; echo "\n\r"; //附件內(nèi)容 $pattern = "/Content-Type: multipart\/mixed;.*?boundary=\"(.*?)\"/ims"; preg_match($pattern,$content,$results); if($results[1]!=""){ $seperator = "--".$results[1]; $spcontent = explode($seperator, $content); $items = array(); $keyid = 0; $email_attachment_content_array = array(); foreach($spcontent as $spkey=>$item) { //匹配header編碼等信息 $pattern = "/Content-Type: ([^;]*?);.*?name=(.*?)\nContent-Transfer-Encoding: (.*?)\nContent-Disposition: attachment;.*?filename=(.*?)\n/ims"; preg_match($pattern,$item,$item_results); //print_r($item_results); if(count($item_results)==5){ $Content_code = str_replace($item_results[0],"",$item); $item_results[5] = trim($Content_code); if(trim($item_results[3])=="base64"){ $item_results[6] = base64_decode($item_results[5]); } if(trim($item_results[3])=="quoted-printable"){ $item_results[6] = quoted_printable_decode($item_results[5]); } $item_results[7] = str_replace("\"","",getdecodevalue($item_results[2])); $item_results[8] = str_replace("\"","",getdecodevalue($item_results[4])); //保存附件內(nèi)容到服務(wù)器? //符合規(guī)范的文件名時(shí):有后綴名時(shí)。 if(strrpos($item_results[8], '.')!==false){ $ext = substr($item_results[8], strrpos($item_results[8], '.') + 1); //$filename = "./yjdata/attachment/".date("YmdHis").mt_rand(10000,99999).".".trim($ext); $attachment_filename = "./yjdata/attachment/".trim(str_replace("\"","",getbase64code($item_results[4]))).".".trim($ext); mkdirs(dirname($attachment_filename)); $fp = fopen($attachment_filename, "w+"); if (flock($fp, LOCK_EX)) { // 進(jìn)行排它型鎖定 fwrite($fp, $item_results[6]); flock($fp, LOCK_UN); // 釋放鎖定 } else { //echo "Couldn't lock the file !"; } fclose($fp); $item_results[9] = $attachment_filename; $email_attachment_content_array[] = $item_results; } } } //print_r($email_attachment_content_array); } if(count($email_attachment_content_array)>0){ echo "附件:"; echo "\n\r"; //附件讀取 foreach($email_attachment_content_array as $email_attachment_content_each_key=>$email_attachment_content_each_value){ unset($email_attachment_content_each_value[5]); unset($email_attachment_content_each_value[6]); print_r($email_attachment_content_each_value[8]); print_r($email_attachment_content_each_value[9]); } } function getbase64code($content){ $pattern="/=\?GB2312\?B\?(.*?)\?=|=\?GBK\?B\?(.*?)\?=|=\?UTF-8\?B\?(.*?)\?=/ims"; preg_match($pattern,$content,$subject_results); if($subject_results[1]!=""){ $subject = $subject_results[1]; $charset = "GB2312"; } elseif($subject_results[2]!=""){ $subject = $subject_results[2]; $charset = "GBK"; } elseif($subject_results[3]!=""){ $subject = $subject_results[3]; $charset = "UTF-8"; }else{ $subject = $content; $charset = ""; } return $subject; } function getdecodevalue($content){ $pattern="/=\?GB2312\?B\?(.*?)\?=|=\?GBK\?B\?(.*?)\?=|=\?UTF-8\?B\?(.*?)\?=/ims"; preg_match($pattern,$content,$subject_results); if($subject_results[1]!=""){ $subject = base64_decode($subject_results[1]); $charset = "GB2312"; } elseif($subject_results[2]!=""){ $subject = base64_decode($subject_results[2]); $charset = "GBK"; } elseif($subject_results[3]!=""){ $subject = base64_decode($subject_results[3]); $charset = "UTF-8"; }else{ $subject = $content; $charset = ""; } if($charset!=""){ $subject = mb_convert_encoding($subject, 'UTF-8', $charset); } return $subject; } function mkdirs($dir) { if(!is_dir($dir)) { if(!mkdirs(dirname($dir))){ return false; } if(!mkdir($dir,0777)){ return false; } } chmod($dir, 777); //給目錄操作權(quán)限 return true; } ?>
有圖有真相:
附:完整實(shí)例代碼點(diǎn)擊此處本站下載。
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php文件操作總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語法入門教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》及《php字符串(string)用法總結(jié)》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
相關(guān)文章
PHP實(shí)現(xiàn)刪除字符串中任何字符的函數(shù)
這篇文章主要介紹了PHP實(shí)現(xiàn)刪除字符串中任何字符的函數(shù),涉及php針對(duì)字符串的遍歷與截取操作技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-08-08php中使用__autoload()自動(dòng)加載未定義類的實(shí)現(xiàn)代碼
當(dāng)PHP引擎遇到未實(shí)例化的類時(shí)就會(huì)觸發(fā)這個(gè)方法,當(dāng)然你的php代碼中要用到__autoload()才可以哦2013-02-02PHP項(xiàng)目開發(fā)中最常用的自定義函數(shù)整理
PHP項(xiàng)目開發(fā)中最常用的自定義函數(shù),php開發(fā)中,經(jīng)常需要用到的。其實(shí)很多成熟的cms系統(tǒng)中都有的。2010-12-12PHP運(yùn)行時(shí)強(qiáng)制顯示出錯(cuò)信息的代碼
PHP運(yùn)行時(shí)強(qiáng)制顯示出錯(cuò)信息的代碼,需要的朋友可以參考下。2011-04-04php 實(shí)現(xiàn)進(jìn)制轉(zhuǎn)換(二進(jìn)制、八進(jìn)制、十六進(jìn)制)互相轉(zhuǎn)換實(shí)現(xiàn)代碼
php 實(shí)現(xiàn)進(jìn)制轉(zhuǎn)換(二進(jìn)制、八進(jìn)制、十六進(jìn)制)互相轉(zhuǎn)換實(shí)現(xiàn)代碼,需要的朋友可以參考下。2010-10-10IP攻擊升級(jí),程序改進(jìn)以對(duì)付新的攻擊
我上一篇文章《最新開發(fā)的網(wǎng)站防IP攻擊代碼,超級(jí)有用》寫了一個(gè)完整的防止網(wǎng)絡(luò)惡意IP攻擊的方案,使用了一個(gè)月,效果良好。2010-11-11PHP圖像處理之imagecreate、imagedestroy函數(shù)介紹
這篇文章主要介紹了PHP圖像處理之imagecreate、imagedestroy函數(shù)介紹,imagecreate用于創(chuàng)建一個(gè)圖像,imagedestroy用于銷毀一個(gè)圖像,需要的朋友可以參考下2014-11-11