中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP HTML生成word

發布時間:2020-06-09 20:48:51 來源:網絡 閱讀:22097 作者:pansw113 欄目:web開發

/**

  • 根據HTML代碼獲取word文檔內容
  • 創建一個本質為mht的文檔,該函數會分析文件內容并從遠程下載頁面中的圖片資源
  • 該函數依賴于類WordMake
  • 該函數會分析img標簽,提取src的屬性值。但是,src的屬性值必須被引號包圍,否則不能提取
  • @param string $content HTML內容
  • @param string $absolutePath 網頁的絕對路徑。如果HTML內容里的圖片路徑為相對路徑,那么就需要填寫這個參數,來讓該函數自動填補成絕對路徑。這個參數最后需要以/結束
  • @param bool $isEraseLink 是否去掉HTML內容中的鏈接
    */
    // 手動下載下Wordmaker

function WordMake( $content , $absolutePath = "" , $isEraseLink = true )
{
import("ORG.Util.Wordmaker");
$mht = new \MhtFileMaker();
if ($isEraseLink){
$content = preg_replace('/<a\s.?\s>(\s.?\s)<\/a>/i' , '$1' , $content); //去掉鏈接
}
$images = array();
$files = array();
$matches = array();
//這個算法要求src后的屬性值必須使用引號括起來
if ( preg_match_all('/<img[.\n]?src\s?=\s?[\"\'](.?)\"\'\/>/i',$content ,$matches ) ){
$arrPath = $matches[1];
for ( $i=0;$i<count($arrPath);$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<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:".$image." not exist!<br />";
}
}
return $mht->GetFile();
}

function GenerateWord($content){
$_path='Uploads/word/'.date('Y-m-d',time()).'/';
if (!file_exists($_path)){ mkdir ($_path); }
$content = iconv("utf-8", "GBK",$content);
$rand=rand(1000,9999);

$fileContent = WordMake($content,$url);//生成word內容

$fp = fopen($_path.$name.time().$rand.".doc", 'w');//打開生成的文檔
fwrite($fp, $fileContent);//寫入包保存文件
fclose($fp);
return $_path.$name.time().$rand.".doc";

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁国市| 漠河县| 苏尼特右旗| 星子县| 吴川市| 额济纳旗| 灵石县| 壤塘县| 武夷山市| 山东| 岢岚县| 炎陵县| 桑植县| 哈密市| 抚州市| 西畴县| 玉屏| 外汇| 峨山| 临泉县| 广饶县| 沂源县| 福清市| 通许县| 将乐县| 新沂市| 偏关县| 泽普县| 泸定县| 屏南县| 抚宁县| 桃江县| 柏乡县| 荥经县| 和龙市| 灯塔市| 信宜市| 磐石市| 微山县| 麦盖提县| 阜阳市|