-
- /**
- * HTML 코드를 기반으로 단어 문서 콘텐츠 가져오기
- * 본질적으로 mht인 문서를 생성합니다. 이 기능은 파일 콘텐츠를 분석하고 원격 위치에서 페이지의 이미지 리소스를 다운로드합니다.
- * 이 기능은 함수는 MhtFileMaker 클래스에 따라 다릅니다.
- * 이 함수는 img 태그를 분석하고 src의 속성 값을 추출합니다. 단, src의 속성 값은 따옴표로 묶어야 합니다. 그렇지 않으면 추출할 수 없습니다.
- *
- * @param string $content HTML content
- * @param string $absolutePath 웹 페이지의 절대 경로입니다. . HTML 콘텐츠의 이미지 경로가 상대 경로인 경우 함수가 자동으로 절대 경로를 채울 수 있도록 이 매개변수를 입력해야 합니다. 이 매개변수는 /로 끝나야 합니다.
- * @param bool $isEraseLink HTML 콘텐츠의 링크 제거 여부
- */
- function getWordDocument( $content , $absolutePath = "" , $isEraseLink = true )
- {
- $mht = new MhtFileMaker();
- if ($isEraseLink)
- $content = preg_replace('/(s*.*? s*)/i' , '$1' , $content); //링크 제거
- $images = array()
- $files = array(); 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://')
- {
- //접두사 없는 절대 링크
- }
- else
- {
- $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();
- }
-
-
- 코드 복사
사용법:
$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 문서를 생성하는 데 도움이 될 수 있습니다.
- /**************************************************** *******************
- 클래스: Mht File Maker
- 버전: 1.2 베타
- 링크: http://bbs.it-home.org
- 작성자: Wudi
- 설명: 클래스는 .mht 파일을 만들 수 있습니다.
- ************************************************************************ ************************/
- class MhtFileMaker{
- var $config = array();
- var $headers = 배열();
- var $headers_exists = 배열();
- var $files = 배열();
- var $boundary;
- var $dir_base;
- var $page_first;
- 함수 MhtFile($config = array()){
- }
- 함수 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");
- }
- 함수 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") );
- }
- function AutoAddFiles(){
- if (!isset($this->page_first)) {
- exit ('첫 번째 페이지를 설정하지 않습니다.');
- }
- $filepath = str_replace($this->dir_base, '', $this->page_first);
- $filepath = 'http://mhtfile' . $파일 경로;
- $this->AddFile($this->page_first, $filepath, NULL);
- $this->AddDir($this->dir_base);
- }
- 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' . $파일 경로;
- $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);
- $인코딩 = 'base64';
- }
- $this->files[] = array('filepath' => $filepath,
- 'mimetype' => $mimetype,
- 'filecont' => $filecont ,
- '인코딩' =>
- }
- 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) {
- return FALSE;
- } else {
- TRUE를 반환합니다.
- }
- }
- function GetFile(){
- $this->CheckHeaders();
- if (!$this->CheckFiles()) {
- exit ('파일이 추가되지 않았습니다.');
- }
- $contents = implode("rn", $this->headers);
- $contents .= "rn";
- $contents .= "MIME 버전: 1.0rn";
- $contents .= "콘텐츠 유형: 멀티파트/관련;rn";
- $contents .= "tboundary="{$this->boundary}";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 .= ";
- }
- $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)
- switch($pathinfo['extension']) {
- case 'htm': $mimetype = 'text/html';
- case 'html': $mimetype = 'text/html'; break
- case 'txt': $mimetype = 'text/plain'; 🎜>case 'cgi': $mimetype = 'text/plain';
- case 'php': $mimetype = 'text/plain'
- case 'css': $mimetype = 'text /css';
- case 'jpg': $mimetype = 'image/jpeg'; break
- case 'jpeg': $mimetype = 'jpeg'; ': $mimetype = '이미지/jpeg'; 부서지다;
- 케이스 'gif': $mimetype = '이미지/gif'; 부서지다;
- 케이스 'png': $mimetype = 'image/png'; 부서지다;
- 기본값: $mimetype = 'application/octet-stream'; 부서지다;
- }
- $mimetype을 반환합니다.
- }
- }
- ?>
-
- 复主代码
|