PHP가 EML 파일을 읽고 구문 분석하고 웹 페이지를 생성하는 방법에 대한 공유 예
이 글에서는 주로 PHP로 eml 파일을 읽고 파싱하고 웹페이지를 생성하는 방법을 소개하고, PHP로 eml 파일을 읽고 파싱하고 변환하기 위한 관련 구현 기술과 주의사항을 예제 형식으로 분석합니다. 독자 여러분. 참고용으로 다운로드하고, 필요한 친구는 참고할 수 있습니다.
이 글에서는 PHP에서 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="brush:php;toolbar:false">"; 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: (.*?)\n/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 "\n\r"; 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:(.*?)\n/ims"; preg_match($pattern,$content,$to_results); $to = $to_results[1]; } echo "\n\r"; echo "收件人:"; print_r($to); echo "\n\r"; //正文内容 $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 "内容:"; echo "\n\r"; echo $content_html; echo "\n\r"; //附件内容 $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])); //保存附件内容到服务器? //符合规范的文件名时:有后缀名时。 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 "\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); //给目录操作权限 return true; } ?>
사진과 진실이 있습니다:
위 내용은 PHP가 EML 파일을 읽고 구문 분석하고 웹 페이지를 생성하는 방법에 대한 공유 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

핫 AI 도구

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

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

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

Clothoff.io
AI 옷 제거제

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

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

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

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











PHP 8.4는 상당한 양의 기능 중단 및 제거를 통해 몇 가지 새로운 기능, 보안 개선 및 성능 개선을 제공합니다. 이 가이드에서는 Ubuntu, Debian 또는 해당 파생 제품에서 PHP 8.4를 설치하거나 PHP 8.4로 업그레이드하는 방법을 설명합니다.

CakePHP는 PHP용 오픈 소스 프레임워크입니다. 이는 애플리케이션을 훨씬 쉽게 개발, 배포 및 유지 관리할 수 있도록 하기 위한 것입니다. CakePHP는 강력하고 이해하기 쉬운 MVC와 유사한 아키텍처를 기반으로 합니다. 모델, 뷰 및 컨트롤러 gu

VS Code라고도 알려진 Visual Studio Code는 모든 주요 운영 체제에서 사용할 수 있는 무료 소스 코드 편집기 또는 통합 개발 환경(IDE)입니다. 다양한 프로그래밍 언어에 대한 대규모 확장 모음을 통해 VS Code는

CakePHP는 오픈 소스 MVC 프레임워크입니다. 이를 통해 애플리케이션 개발, 배포 및 유지 관리가 훨씬 쉬워집니다. CakePHP에는 가장 일반적인 작업의 과부하를 줄이기 위한 여러 라이브러리가 있습니다.

이 튜토리얼은 PHP를 사용하여 XML 문서를 효율적으로 처리하는 방법을 보여줍니다. XML (Extensible Markup Language)은 인간의 가독성과 기계 구문 분석을 위해 설계된 다목적 텍스트 기반 마크 업 언어입니다. 일반적으로 데이터 저장 AN에 사용됩니다

JWT는 주로 신분증 인증 및 정보 교환을 위해 당사자간에 정보를 안전하게 전송하는 데 사용되는 JSON을 기반으로 한 개방형 표준입니다. 1. JWT는 헤더, 페이로드 및 서명의 세 부분으로 구성됩니다. 2. JWT의 작업 원칙에는 세 가지 단계가 포함됩니다. JWT 생성, JWT 확인 및 Parsing Payload. 3. PHP에서 인증에 JWT를 사용하면 JWT를 생성하고 확인할 수 있으며 사용자 역할 및 권한 정보가 고급 사용에 포함될 수 있습니다. 4. 일반적인 오류에는 서명 검증 실패, 토큰 만료 및 대형 페이로드가 포함됩니다. 디버깅 기술에는 디버깅 도구 및 로깅 사용이 포함됩니다. 5. 성능 최적화 및 모범 사례에는 적절한 시그니처 알고리즘 사용, 타당성 기간 설정 합리적,

문자열은 문자, 숫자 및 기호를 포함하여 일련의 문자입니다. 이 튜토리얼은 다른 방법을 사용하여 PHP의 주어진 문자열의 모음 수를 계산하는 방법을 배웁니다. 영어의 모음은 A, E, I, O, U이며 대문자 또는 소문자 일 수 있습니다. 모음이란 무엇입니까? 모음은 특정 발음을 나타내는 알파벳 문자입니다. 대문자와 소문자를 포함하여 영어에는 5 개의 모음이 있습니다. a, e, i, o, u 예 1 입력 : String = "Tutorialspoint" 출력 : 6 설명하다 문자열의 "Tutorialspoint"의 모음은 u, o, i, a, o, i입니다. 총 6 개의 위안이 있습니다

숙련된 PHP 개발자라면 이미 그런 일을 해왔다는 느낌을 받을 것입니다. 귀하는 상당한 수의 애플리케이션을 개발하고, 수백만 줄의 코드를 디버깅하고, 여러 스크립트를 수정하여 작업을 수행했습니다.
