-
- /**
- * HTML コードに基づいて Word ドキュメントのコンテンツを取得します
- * 本質的に mht であるドキュメントを作成します。この関数はファイルのコンテンツを分析し、リモートの場所からページ内の画像リソースをダウンロードします
- * この関数はクラス MhtFileMaker に依存します
- *この関数は img タグを解析し、src の属性値を抽出します。ただし、src の属性値は引用符で囲む必要があります。そうしないと抽出できません。
- *
- * @param string $content HTML コンテンツ
- * @param string $absolutePath Web ページの絶対パス。 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();
- $matches = array();
- //このアルゴリズムでは、src の後の属性値を引用符で囲む必要があります
- if ( preg_match_all(' /< ;img[.n]*?srcs*?=s*?["'](.*?)["'](.*?)/>/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{
- $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);- コードをコピーします
このうち、$content 変数は HTML ソース コードである必要があり、次のリンクは HTML コード内の画像の相対パスを埋めることができる URL アドレスである必要があります。
この関数を使用する前に、MhtFileMaker クラスを含める必要があることに注意してください。このクラスは Mht ドキュメントの生成に役立ちます。
- /*************************************************** *******************
- クラス: Mht File Maker
- バージョン: 1.2 ベータ版
- リンク: http://bbs.it-home.org
- 作者: Wudi < wudicgi@yahoo.de>
- 説明: このクラスは .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");
- }
- function SetSubject($subject){
- $this->SetHeader("Subject: $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"));
- }
- 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);
- $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 {
- TRUE を返します。
- }
- }
- function GetFile(){
- $this->CheckHeaders();
- if (!$this->CheckFiles()) {
- exit ('ファイルは追加されませんでした。');
- }
- $contents = implode("rn", $this->headers);
- $contents .= "rn";
- $contents .= "MIME バージョン: 1.0rn";
- $contents .= "Content-Type: multipart/relative;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[ファイルパス]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, $fp)
- }
- 関数 GetMimeType($filename){
- $pathinfo($pathinfo['拡張子); ']) {
- case 'htm': $mimetype = 'text/html';
- case 'html': $mimetype = 'text/プレーン';
- ケース 'cgi': $mimetype = 'テキスト/プレーン';
- ケース 'テキスト/プレーン'; /css';
- case 'jpg': $mimetype = 'image/jpeg';
- case 'jpe';画像/jpeg';
- ケース 'gif': $mimetype = 'image/gif';壊す;
- case 'png': $mimetype = 'image/png';壊す;
- デフォルト: $mimetype = 'application/octet-stream';壊す;
- }
- $mimetype を返します。
- }
- }
- ?>
-
-
- 复政代
-
-
|