php读取eml实例、php解析eml、eml解析成网页
php读取eml实例,本实例可以将导出eml文件解析成正文,并且可以将附件保存到服务器。不多说直接贴代码了。
如果你觉得此代码不错,请点个赞。谢谢~~~~
<!--?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 class="code">; 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.')'); //标题内容 $pattern=/Subject: (.*?) /ims; preg_match($pattern,$content,$subject_results); $subject = getdecodevalue($subject_results[1]); echo 标题:.$subject; //发件人: $pattern=/From: .*?<(.*?)>/ims; preg_match($pattern,$content,$from_results); $from = $from_results[1]; echo ; echo 发件人:.$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:(.*?) /ims; preg_match($pattern,$content,$to_results); $to = $to_results[1]; } echo ; echo 收件人:; print_r($to); echo ; //正文内容 $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=(.*?) Content-Transfer-Encoding: (.*?) /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 内容:; echo ; echo $content_html; echo ; //附件内容 $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=(.*?) Content-Transfer-Encoding: (.*?) Content-Disposition: attachment;.*?filename=(.*?) /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])); //保存附件内容到服务器? //符合规范的文件名时:有后缀名时。 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)) { // 进行排它型锁定 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 ; //附件读取 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); //给目录操作权限 return true; } ?>
有图有真相:
성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사
R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
1 몇 달 전By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 최고의 그래픽 설정
1 몇 달 전By尊渡假赌尊渡假赌尊渡假赌
어 ass 신 크리드 그림자 : 조개 수수께끼 솔루션
3 몇 주 전ByDDD
Windows 11 KB5054979의 새로운 기능 및 업데이트 문제를 해결하는 방법
2 몇 주 전ByDDD
Will R.E.P.O. 크로스 플레이가 있습니까?
1 몇 달 전By尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

MinGW - Windows용 미니멀리스트 GNU
이 프로젝트는 osdn.net/projects/mingw로 마이그레이션되는 중입니다. 계속해서 그곳에서 우리를 팔로우할 수 있습니다. MinGW: GCC(GNU Compiler Collection)의 기본 Windows 포트로, 기본 Windows 애플리케이션을 구축하기 위한 무료 배포 가능 가져오기 라이브러리 및 헤더 파일로 C99 기능을 지원하는 MSVC 런타임에 대한 확장이 포함되어 있습니다. 모든 MinGW 소프트웨어는 64비트 Windows 플랫폼에서 실행될 수 있습니다.

SublimeText3 영어 버전
권장 사항: Win 버전, 코드 프롬프트 지원!

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

Eclipse용 SAP NetWeaver 서버 어댑터
Eclipse를 SAP NetWeaver 애플리케이션 서버와 통합합니다.

PhpStorm 맥 버전
최신(2018.2.1) 전문 PHP 통합 개발 도구
