-
-
/**************************************************** ******************* - 클래스: Mht File Maker
- 버전: 1.2 베타
- 링크:bbs.it-home.org
- 저자 : Wudi
- 설명: 해당 클래스에서는 .mht 파일을 만들 수 있습니다.
- ************************ ***********************************************/
class MhtFileMaker{
- var $config = array();
- var $headers = array();
- var $headers_exists = array();
- var $files = array();
- var $boundary;
- var $dir_base;
- var $page_first;
function MhtFile($config = array()){
- < p>}
function SetHeader($header){
- $this->headers[] = $header;
- $key = strtolower(substr($header, 0, strpos($header, ':')));
- $this->headers_exists[$key] = TRUE;
- }
function SetFrom($ from){
- $this->SetHeader("From: $from");
- }
function SetSubject($subject){
- $this- >SetHeader("제목: $subject");
- }
function SetDate($date = NULL, $istimestamp = FALSE){
- if ($date = = NULL) {
- $date = time();
- }
- if ($istimestamp == TRUE) {
- $date = date('D, d M Y H:i:s O', $date);
- }
- $this->SetHeader("날짜: $date");
- }
function SetBoundary($boundary = NULL) {
- if ($boundary == NULL) {
- $this->boundary = '--' . strtoupper(md5(mt_rand())) . '_MULTIPART_MIXED';
- } else {
- $this->boundary = $boundary;
- }
- }
function SetBaseDir($dir){
- $this->dir_base = str_replace("", "/", realpath($dir));
- }
function SetFirstPage($filename){
- $this->page_first = str_replace("", "/", realpath("{$this->dir_base}/$filename"));
- }
- < p>function AutoAddFiles(){
- if (!isset($this->page_first)) {
- exit ('첫 번째 페이지를 설정하지 않습니다.');
- }
- $filepath = str_replace ($this->dir_base, '', $this->page_first);
- $filepath = 'http://mhtfile' . $filepath;
- $this->AddFile($this->page_first, $filepath, NULL);
- $this->AddDir($this->dir_base);
- }< /p>
function AddDir($dir){
- $handle_dir = opendir($dir);
- while ($filename = readdir($handle_dir)) {
- if (( $filename!='.') && ($filename!='..') && ("$dir/$filename"!=$this->page_first)) {
- if (is_dir("$dir/ $filename")) {
- $this->AddDir("$dir/$filename");
- } elseif (is_file("$dir/$filename")) {
- $filepath = str_replace ($this->dir_base, '', "$dir/$filename");
- $filepath = 'http://mhtfile' . $filepath;
- $this->AddFile("$dir/$filename", $filepath, NULL);
- }
- }
- }
- closedir($handle_dir);
- }
function AddFile($filename, $filepath = NULL, $encoding = NULL){
- if ($filepath == NULL) {
- $filepath = $ filename;
- }
- $mimetype = $this->GetMimeType($filename);
- $filecont = file_get_contents($filename);
- $this->AddContents($filepath, $mimetype , $filecont, $encoding);
- }
function AddContents($filepath, $mimetype, $filecont, $encoding = NULL){
- if ($encoding = = NULL) {
- $filecont = Chunk_split(base64_encode($filecont), 76);
- $encoding = 'base64';
- }
- $this->files[] = array(' 파일 경로' => $filepath,
- 'mimetype' => $mimetype,
- 'filecont' => $filecont,
- '인코딩' => ;/p>
function CheckHeaders(){
- if (!array_key_exists('date', $this->headers_exists)) {
- $this->SetDate(NULL, TRUE );
- }
- if ($this->boundary == NULL) {
- $this->SetBoundary();
- }
- }
-
function CheckFiles(){
- if (count($this->files) == 0) {
- FALSE를 반환;
- } else {
- TRUE를 반환;
- }
- }
function GetFile(){
- $this->CheckHeaders();
- if (!$this->CheckFiles()) {
- exit ('파일이 추가되지 않았습니다.');
- }
- $contents = implode("rn", $this->headers);
- $contents .= "rn";
- $contents .= "MIME 버전: 1.0rn";
- $contents .= "콘텐츠 유형: multipart/관련;rn";
- $contents .= "tboundary="{$this-> 경계}";rn";
- $contents .= "ttype="" . $this->files[0]['mimetype'] . ""rn";
- $contents .= "X-MimeOLE: 제작: Mht File Maker v1.0 betarn";
- $contents .= "rn";
- $contents .= "이것은 MIME 형식의 여러 부분으로 구성된 메시지입니다.rn";
- $contents . = "rn";
- foreach ($this->files as $file) {
- $contents .= "--{$this->boundary}rn";
- $contents .= " 콘텐츠 유형: $file[mimetype]rn";
- $contents .= "콘텐츠 전송-인코딩: $file[encoding]rn";
- $contents .= "콘텐츠 위치: $file[filepath ]rn";
- $contents .= "rn";
- $contents .= $file['filecont'];
- $contents .= "rn";
- }
- $contents .= "--{$this->boundary}--rn";
- return $contents;
- }
function MakeFile($filename){
- $contents = $this->GetFile();
- $fp = fopen($filename, 'w');
- fwrite($fp, $contents);
- fclose($fp);
- }
function GetMimeType($filename){
- $pathinfo = pathinfo($filename);
- 스위치($pathinfo['extension']) {
- case 'htm': $mimetype = 'text/html'; break;
- case 'html': $mimetype = 'text/html'; break;
- case 'txt': $mimetype = 'text/plain'; break;
- case 'cgi': $mimetype = 'text/plain'; break;
- case 'php': $mimetype = 'text/plain'; break;
- case 'css': $mimetype = 'text/css'; break;
- case 'jpg': $mimetype = 'image/jpeg'; break;
- case 'jpeg': $mimetype = 'image/jpeg'; break;
- case 'jpe': $mimetype = 'image/jpeg'; break;
- case 'gif': $mimetype = 'image/gif'; break;
- case 'png': $mimetype = 'image/png'; break;
- 기본값: $mimetype = 'application/octet-stream'; break;
- }
- return $mimetype;
- }
- }
- ?>
-
复system代码
2、导출단어文件exportdoc.php
-
-
/** - * HTML 코드를 기반으로 단어 문서 콘텐츠 가져오기
- * 본질적으로 mht인 문서를 생성합니다. 이 기능은 파일 콘텐츠를 분석하고 원격 위치에서 페이지의 이미지 리소스를 다운로드합니다.
- * 이 기능은 함수는 MhtFileMaker 클래스에 따라 다릅니다.
- * 이 함수는 img 태그를 분석하고 src의 속성 값을 추출합니다. 단, src의 속성 값은 따옴표로 묶어야 합니다. 그렇지 않으면 추출할 수 없습니다.
- *
- * @param string $content HTML content
- * @param string $absolutePath 웹 페이지의 절대 경로입니다. . HTML 콘텐츠의 이미지 경로가 상대 경로인 경우 함수가 자동으로 절대 경로를 채울 수 있도록 이 매개변수를 입력해야 합니다. 이 매개변수는 /
- * @param bool $isEraseLink로 끝나야 합니다. HTML 콘텐츠에서 링크를 제거할지 여부
- */
- include_once("docclass.php" );
- 함수 getWordDocument( $content , $absolutePath = "" , $isEraseLink = true )
- {
- $mht = new MhtFileMaker();
- if ($isEraseLink)
- $content = preg_replace ('/(s*.*?s*)/i' , '$1' , $content); //去掉链接
$images = array();
- $files = array();
- $matches = array();
- //这个算法要求src后的属性值必须使用引号括起来
- if ( preg_match_all('//i',$content ,$matches ) )
- {
- $arrPath = $matches[1];
- for ( $i=0;$i{
- $path = $arrPath[$i];
- $imgPath = Trim( $path );
- if ( $imgPath != "" )
- {
- $files[] = $imgPath;
- if( substr($imgPath,0,7) == 'http://')
- {
- //绝对链接 不加前缀
- }
- 그 외
- {
- $imgPath = $absolutePath.$imgPath;
- }
- $images[] = $imgPath;
- }
- }
- }
- $mht->AddContents("tmp.html",$mht->GetMimeType("tmp.html"),$content);
for( $ i=0;$i{- $image = $images[$i];
- if ( @fopen($image , 'r') )
- {
- $imgcontent = @file_get_contents( $image );
- if ( $content )
- $mht->AddContents($files[$i],$mht->GetMimeType($image ),$imgcontent);
- }
- else
- {
- echo "file:".$image."이 존재하지 않습니다!
";
- }
- }
return $mht->GetFile();
- }
- $content=implode("",file("http://bbs.it-home. org/print.php?id=3548"));
- $fileContent = getWordDocument($content,".");
- $fp = fopen("hugesky_word.doc", 'w');
- fwrite($fp, $fileContent);
- fclose($fp);
- ?>
-
复代码
|