菜鸡源码,专注精品下载!
当前位置:首页 > 建站教程 > 建站知识

将Word文档上传至百度编辑器并转换为HTML格式

发布时间:2024-01-05  栏目:建站知识   浏览:   分类:php教程 百度编辑器 php上传

百度编辑器是一款在线编辑工具,支持将Word文档转换为HTML格式。要使用百度编辑器上传Word转HTML,首先需要打开百度编辑器官网,点击“立即使用”进入编辑器界面。然后点击左上角的“文件”按钮,选择“导入本地文件”,在弹出的窗口中选择要转换的Word文档。接着点击“开始转换”按钮,等待转换完成后,点击“下载”按钮将转换后的HTML文件保存到本地。需要注意的是,百度编辑器对Word文档的格式支持有限,部分复杂的格式可能会丢失或出错。

后台上传word转html到编辑器中,编辑器是使用的百度编辑器,先在页面合适的位置写个上传框

<buttontype=”button”name=”fileword”id=”upload-fileword”>上传word文件</button>

前端用的layUI框架,不需要写提示框,图个方便,大家自行选择

<script>layui.use('upload',function(){varupload=layui.upload;upload.render({elem:'#upload-fileword',accept:'file',url:'".url('upload/uploadword',['file'=>'file'])."',exts:'docx',done:function(data){if(data.status==1){UE.getEditor('".$field."').setContent(data.html);layer.msg(data.msg,{icon:1,time:1500,shade:0.1,});}else{layer.msg(data.msg,{icon:2,time:1500,shade:0.1,});}}});});</script>

php上传代码

$upload=newtoolWordUpload(input('file'));$html=$upload->getHtml();if($html===false){returnjson(['status'=>2,'html'=>$html,'msg'=>'解析失败']);}else{returnjson(['status'=>1,'html'=>$html,'msg'=>'解析成功']);}

WordUpload文件 需要phpword包 自己下载

<?phpnamespacetool;usePhpOfficePhpWordPhpWord;usePhpOfficePhpWordIOFactory;usePhpOfficePhpWordStyleFont;usePhpOfficePhpWordSharedZipArchive;usePhpOfficePhpWordSettings;usePhpOfficePhpWordSharedConverter;usePhpOfficePhpWordStyleTablePosition;usethinkfacadeEnv;usethinkfacadeConfig;usethinkFile;usethinkDb;/***ClassWordUpload*[url=home.php?mod=space&uid=1507498]@Package[/url]appcommonutil*word文档上传*/classWordUpload{private$file;private$size;private$ext;private$savePath='/upload/word/';private$errorMsg;private$delTmp=true;/***WordUploadconstructor.*[url=home.php?mod=space&uid=952169]@Param[/url]$file[上传的文件]*@paramint$size[文件大小]*@paramstring$ext[允许的后缀]*/publicfunction__construct($file,$size=1024,$ext='docx'){$this->file=$file;$this->size=$size;$this->ext=$ext;}publicfunctiongetHtml(){$file=request()->file($this->file);if(!$fileinstanceofFile){$this->errorMsg='请上传文件';returnfalse;}//上传文件根据站点选择目录$info=$file->validate(['size'=>$this->size,'ext'=>$this->ext])->move(Env::get('ROOT_PATH').'public/static'.$this->savePath);if(!$info){//上传失败获取错误信息$this->errorMsg=$file->getError();returnfalse;}try{//获取文件路径$tempDocx=Env::get('ROOT_PATH').'public/static'.$this->savePath.$info->getSaveName();$objWriter=IOFactory::createWriter(IOFactory::load($tempDocx),'HTML');$tempHtml=Env::get('ROOT_PATH').'public/static'.$this->savePath.substr($info->getSaveName(),0,strpos($info->getSaveName(),'.')).'.html';$objWriter->save($tempHtml);$html=file_get_contents($tempHtml);if($this->delTmp){//删除临时文件register_shutdown_function(function()use($tempHtml,$tempDocx){unlink($tempHtml);unlink($tempDocx);});}$html=$this->getHtmlBody($html);if($html==''){thrownewException('上传文件内容为空');}$html=$this->saveImage($html);$html=$this->clearStyle($html);$html=$this->clearSpan($html);}catch(Exception$e){$this->errorMsg=$e->getMessage();returnfalse;}return$html;}/***@param$html*[url=home.php?mod=space&uid=155549]@Return[/url]string*匹配出body的内容*/privatefunctiongetHtmlBody($html){preg_match('/<body>([sS]*)</body>/',$html,$matches);returnisset($matches[1])?$matches[1]:'';}/***@param$html*@returnmixed*图片处理*/privatefunctionsaveImage($html){//匹配图片ini_set('pcre.backtrack_limit',9999999);preg_match_all('/<img[^>]*src="([sS]*?)"/>/',$html,$imageMatches);if(!$imageMatches[1]){return$html;}//print_r($imageMatches[1]);exit;$imageUrl=[];foreach($imageMatches[1]as$image){$imageUrl[]=$this->saveLocalBase64Image($image);}returnstr_replace($imageMatches[1],$imageUrl,$html);}/***@param$base64_image_content*@returnstring*保存图片到本地*/privatefunctionsaveLocalBase64Image($base64_image_content){$imge_web_url='';if(preg_match('/^(data:s*image/(w+);base64,)/',$base64_image_content,$result)){//图片后缀$type=$result[2];//保存位置--图片名$image_name=date('His').str_pad(mt_rand(1,99999),5,'0',STR_PAD_LEFT).'.'.$type;//图片名称$image_file_path=$this->savePath.'image/'.date('Ymd');//static/upload/word/image/20200522$image_file=Env::get('ROOT_PATH').'public/static'.$image_file_path;$imge_real_url=$image_file.DIRECTORY_SEPARATOR.$image_name;$imge_web_url='/static'.$image_file_path.DIRECTORY_SEPARATOR.$image_name;if(!file_exists($image_file)){mkdir($image_file,0700,true);}//解码$decode=base64_decode(str_replace($result[1],'',$base64_image_content));$res=file_put_contents($imge_real_url,$decode);return$imge_web_url;}return$imge_web_url;}/***@param$content*@returnnull|string|string[]*清除p,span标签的样式*/privatefunctionclearStyle($content){$patterns=array('/<(p|span)[sS]*?>/i',);returnpreg_replace($patterns,'<$1>',$content);}/***@param$content*@returnnull|string|string[]*清除span标签*/privatefunctionclearSpan($content){$patterns=array('/<span[sS]*?>/i','/</span>/i',);returnpreg_replace($patterns,'',$content);}/***@returnmixed*/publicfunctiongetErrorMsg(){return$this->errorMsg;}}


相关专题
评论
建站知识
建站知识
使用技巧
调试安装
运营推广