웹 페이지를 Word 문서로 내보내기 위한 PHP 코드 소개

WBOY
풀어 주다: 2016-07-25 09:05:23
원래의
1045명이 탐색했습니다.
  1. /**
  2. * HTML 코드를 기반으로 단어 문서 콘텐츠 가져오기
  3. * 본질적으로 mht인 문서를 생성합니다. 이 기능은 파일 콘텐츠를 분석하고 원격 위치에서 페이지의 이미지 리소스를 다운로드합니다.
  4. * 이 기능은 함수는 MhtFileMaker 클래스에 따라 다릅니다.
  5. * 이 함수는 img 태그를 분석하고 src의 속성 값을 추출합니다. 단, src의 속성 값은 따옴표로 묶어야 합니다. 그렇지 않으면 추출할 수 없습니다.
  6. *
  7. * @param string $content HTML content
  8. * @param string $absolutePath 웹 페이지의 절대 경로입니다. . HTML 콘텐츠의 이미지 경로가 상대 경로인 경우 함수가 자동으로 절대 경로를 채울 수 있도록 이 매개변수를 입력해야 합니다. 이 매개변수는 /로 끝나야 합니다.
  9. * @param bool $isEraseLink HTML 콘텐츠의 링크 제거 여부
  10. */
  11. function getWordDocument( $content , $absolutePath = "" , $isEraseLink = true )
  12. {
  13. $mht = new MhtFileMaker();
  14. if ($isEraseLink)
  15. $content = preg_replace('/(s*.*? s*)/i' , '$1' , $content); //링크 제거
  16. $images = array()
  17. $files = array(); array();
  18. //이 알고리즘에서는 src 뒤의 속성 값을 따옴표로 묶어야 합니다.
  19. if ( preg_match_all('//i',$content ,$matches ) )
  20. {
  21. $arrPath = $matches[1]
  22. for ( $i=0;$i{
  23. $path = $arrPath[$i]
  24. $imgPath = Trim( $path ); >if ( $imgPath != "" )
  25. {
  26. $files[] = $imgPath
  27. if( substr($imgPath,0,7) == 'http://')
  28. {
  29. //접두사 없는 절대 링크
  30. }
  31. else
  32. {
  33. $imgPath = $absolutePath.$imgPath;
  34. $images[] = $imgPath ;
  35. }
  36. }
  37. }
  38. $mht->AddContents("tmp.html",$mht->GetMimeType("tmp.html"),$content)
  39. for ( $i=0;$i{
  40. $image = $images[$i]
  41. if ( @fopen($image , 'r' ) )
  42. {
  43. $imgcontent = @file_get_contents( $image )
  44. if ( $content )
  45. $mht->AddContents($files[$i],$mht->GetMimeType ( $image),$imgcontent)
  46. }
  47. else
  48. {
  49. echo "file:".$image."이(가) 존재하지 않습니다!
    "
  50. }
  51. }
  52. return $mht->GetFile();
  53. }
  54. 코드 복사
사용법:

$fileContent = getWordDocument($content,"http://www.yoursite.com/Music/etc/") ;
  • $fp = fopen("test.doc", 'w');
  • fwrite($fp, $fileContent)
  • fclose($fp);
  • 코드 복사
  • 이 중 $content 변수는 HTML 소스 코드여야 하며, 다음 링크는 HTML 코드에서 이미지의 상대 경로를 채울 수 있는 URL 주소여야 합니다. 이 기능을 사용하기 전에 MhtFileMaker 클래스를 포함해야 합니다. 이 클래스는 Mht 문서를 생성하는 데 도움이 될 수 있습니다.

    1. /**************************************************** *******************
    2. 클래스: Mht File Maker
    3. 버전: 1.2 베타
    4. 링크: http://bbs.it-home.org
    5. 작성자: Wudi
    6. 설명: 클래스는 .mht 파일을 만들 수 있습니다.
    7. ************************************************************************ ************************/
    8. class MhtFileMaker{
    9. var $config = array();
    10. var $headers = 배열();
    11. var $headers_exists = 배열();
    12. var $files = 배열();
    13. var $boundary;
    14. var $dir_base;
    15. var $page_first;
    16. 함수 MhtFile($config = array()){
    17. }
    18. 함수 SetHeader($header){
    19. $this->headers[] = $header;
    20. $key = strtolower(substr($header, 0, strpos($header, ':')));
    21. $this->headers_exists[$key] = TRUE;
    22. }
    23. function SetFrom($from){
    24. $this->SetHeader("From: $from");
    25. }
    26. function SetSubject($subject){
    27. $this->SetHeader("제목: $subject");
    28. }
    29. function SetDate($date = NULL, $istimestamp = FALSE){
    30. if ($date == NULL) {
    31. $date = time();
    32. }
    33. if ($istimestamp == TRUE) {
    34. $date = date('D, d M Y H:i:s O', $date);
    35. }
    36. $this->SetHeader("날짜: $date");
    37. }
    38. 함수 SetBoundary($boundary = NULL){
    39. if ($boundary == NULL) {
    40. $this->boundary = '--' . strtoupper(md5(mt_rand())) . '_MULTIPART_MIXED';
    41. } else {
    42. $this->boundary = $boundary;
    43. }
    44. }
    45. function SetBaseDir($dir){
    46. $this->dir_base = str_replace("\", "/", realpath($dir));
    47. }
    48. function SetFirstPage($filename){
    49. $this->page_first = str_replace("\", "/", realpath("{$this->dir_base}/$filename") );
    50. }
    51. function AutoAddFiles(){
    52. if (!isset($this->page_first)) {
    53. exit ('첫 번째 페이지를 설정하지 않습니다.');
    54. }
    55. $filepath = str_replace($this->dir_base, '', $this->page_first);
    56. $filepath = 'http://mhtfile' . $파일 경로;
    57. $this->AddFile($this->page_first, $filepath, NULL);
    58. $this->AddDir($this->dir_base);
    59. }
    60. function AddDir($dir){
    61. $handle_dir = opendir($dir);
    62. while ($filename = readdir($handle_dir)) {
    63. if (($filename!='.') && ($filename!='..') && ("$dir/$filename"! =$this->page_first)) {
    64. if (is_dir("$dir/$filename")) {
    65. $this->AddDir("$dir/$filename");
    66. } elseif (is_file("$dir/$filename")) {
    67. $filepath = str_replace($this->dir_base, '', "$dir/$filename");
    68. $filepath = 'http://mhtfile' . $파일 경로;
    69. $this->AddFile("$dir/$filename", $filepath, NULL);
    70. }
    71. }
    72. }
    73. closedir($handle_dir);
    74. }
    75. function AddFile($filename, $filepath = NULL, $encoding = NULL){
    76. if ($filepath == NULL) {
    77. $filepath = $filename;
    78. }
    79. $mimetype = $this->GetMimeType($filename);
    80. $filecont = file_get_contents($filename);
    81. $this->AddContents($filepath, $mimetype, $filecont, $encoding);
    82. }
    83. function AddContents($filepath, $mimetype, $filecont, $encoding = NULL){
    84. if ($encoding == NULL) {
    85. $filecont = Chunk_split(base64_encode($filecont) , 76);
    86. $인코딩 = 'base64';
    87. }
    88. $this->files[] = array('filepath' => $filepath,
    89. 'mimetype' => $mimetype,
    90. 'filecont' => $filecont ,
    91. '인코딩' =>
    92. }
    93. function CheckHeaders(){
    94. if (!array_key_exists('date', $this->headers_exists)) {
    95. $this->SetDate(NULL, TRUE);
    96. }
    97. if ($this->boundary == NULL) {
    98. $this->SetBoundary();
    99. }
    100. }
    101. function CheckFiles(){
    102. if (count($this->files) == 0) {
    103. return FALSE;
    104. } else {
    105. TRUE를 반환합니다.
    106. }
    107. }
    108. function GetFile(){
    109. $this->CheckHeaders();
    110. if (!$this->CheckFiles()) {
    111. exit ('파일이 추가되지 않았습니다.');
    112. }
    113. $contents = implode("rn", $this->headers);
    114. $contents .= "rn";
    115. $contents .= "MIME 버전: 1.0rn";
    116. $contents .= "콘텐츠 유형: 멀티파트/관련;rn";
    117. $contents .= "tboundary="{$this->boundary}";rn";
    118. $contents .= "ttype="" . $this->files[0]['mimetype'] . ""rn";
    119. $contents .= "X-MimeOLE: Mht File Maker v1.0 betarn에서 제작";
    120. $contents .= "rn";
    121. $contents .= "이것은 MIME 형식의 여러 부분으로 구성된 메시지입니다.rn";
    122. $contents .= "rn";
    123. foreach ($this->files as $file) {
    124. $contents .= "--{$this->boundary}rn";
    125. $contents .= "콘텐츠 유형: $file[mimetype]rn";
    126. $contents .= "콘텐츠 전송 인코딩: $file[encoding]rn";
    127. $contents .= "콘텐츠 위치: $file[filepath]rn";
    128. $contents .= "rn"
    129. $contents .= $file['filecont']
    130. $contents .= ";
    131. }
    132. $contents .= "--{$this->boundary}--rn";
    133. return $contents;
    134. }
    135. function MakeFile($filename){
    136. $contents = $this->GetFile();
    137. $fp = fopen($filename, 'w')
    138. fwrite($fp, $contents)
    139. fclose($fp) );
    140. }
    141. function GetMimeType($filename){
    142. $pathinfo = pathinfo($filename)
    143. switch($pathinfo['extension']) {
    144. case 'htm': $mimetype = 'text/html';
    145. case 'html': $mimetype = 'text/html'; break
    146. case 'txt': $mimetype = 'text/plain'; 🎜>case 'cgi': $mimetype = 'text/plain';
    147. case 'php': $mimetype = 'text/plain'
    148. case 'css': $mimetype = 'text /css';
    149. case 'jpg': $mimetype = 'image/jpeg'; break
    150. case 'jpeg': $mimetype = 'jpeg'; ': $mimetype = '이미지/jpeg'; 부서지다;
    151. 케이스 'gif': $mimetype = '이미지/gif'; 부서지다;
    152. 케이스 'png': $mimetype = 'image/png'; 부서지다;
    153. 기본값: $mimetype = 'application/octet-stream'; 부서지다;
    154. }
    155. $mimetype을 반환합니다.
    156. }
    157. }
    158. ?>
    159. 复主代码
    원천:php.cn
    본 웹사이트의 성명
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
    인기 튜토리얼
    더>
    최신 다운로드
    더>
    웹 효과
    웹사이트 소스 코드
    웹사이트 자료
    프론트엔드 템플릿