-
-
/*************************************************** ******************* - クラス: Mht File Maker
- バージョン: 1.2 beta
- リンク: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()){
}
function SetHeader($header){
- $this->headers[] = $header;
- $key = strto lower(substr($header, 0, strpos($header, ':')));
- $this->headers_exists[$key] = TRUE;
- }
function SetFrom($from){
- $this->SetHeader("From: $from");
- }gt;
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: $ 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"));
- }
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");
- $ファイルパス = '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' => $filepath,
- 'mimetype' => $mimetype,
- 'filecont' => $filecont,
- 'encoding' => $encoding);
- }
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 {
- return TRUE;
- }
- }
function GetFile(){
- $this->CheckHeaders() ;
- if (!$this->CheckFiles()) {
- exit ('ファイルは追加されませんでした。');
- }
- $contents = implode("rn", $this->headers);
- $contents .= "rn";
- $contents .= "MIME バージョン: 1.0rn";
- $contents .= "Content-Type: multipart/popular;rn";
- $contents .= "tboundary="{$this- >境界}";rn";
- $contents .= "ttype="" . $this->files[0]['mimetype'] . ""rn";
- $contents .= "X-MimeOLE: Mht ファイルによって生成Maker v1.0 betarn";
- $contents .= "rn";
- $contents .= "これは MIME 形式のマルチパート メッセージです。rn";
- $contents .= "rn";
- foreach ($this ->ファイルを $file として) {
- $contents .= "--{$this->boundary}rn";
- $contents .= "Content-Type: $file[mimetype]rn";
- $contents . = "コンテンツ転送エンコーディング: $file[エンコーディング]rn";
- $contents .= "コンテンツの場所: $file[ファイルパス]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);
- switch ($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';ブレーク;
- デフォルト: $mimetype = 'application/octet-stream'; Break;
- }
- return $mimetype;
- }
- }
- ?>
-
复制代码
2、导出単語文件exportdoc.php
-
-
- /**
- * HTML コードに基づいて Word ドキュメントのコンテンツを取得します
- * 本質的に mht であるドキュメントを作成します。この関数はファイルのコンテンツを分析し、リモートの場所からページ内の画像リソースをダウンロードします。
- * この関数はクラス MhtFileMaker に依存します。
- * この関数は img タグを解析し、src の属性値を抽出します。ただし、src の属性値は引用符で囲む必要があります。そうしないと抽出できません
- *
- * @param string $content HTML コンテンツ
- * @param string $absolutePath Web ページの絶対パス。 HTML コンテンツ内の画像パスが相対パスの場合、関数によって絶対パスが自動的に入力されるように、このパラメータを入力する必要があります。このパラメータは /
- * で終わる必要があります @param bool $isEraseLink HTML コンテンツ内のリンクを削除するかどうか
- */
- include_once("docclass.php");
- function 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 = トリム( $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< ;count($images);$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:".$画像。" 存在しません!
";
- }
- }
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);
- ?>
复制帽
|