我有一個像波紋管如何從HTML製作.doc/.docx文件(字符串)?
<?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"><head><style><!--
/*paged media */ div.header {display: none }
div.footer {display: none } /*@media print { */
@page { size: A4; margin: 10%; @top-center {
content: element(header) } @bottom-center {
content: element(footer) } }
/*font definitions*/
/*element styles*/ .del
{text-decoration:line-through;color:red;}
.ins {text-decoration:none;background:#c0ffc0;padding:1px;}
/* Word style definitions */
/* TABLE STYLES */
/* PARAGRAPH STYLES */
.DocDefaults {display:block;space-after: 4mm;line-height: 115%;font-family: Calibri;font-size: 11.0pt;}
.Normal {display:block;}
/* CHARACTER STYLES */ .DefaultParagraphFont {display:inline;}
/* TABLE CELL STYLES */
--></style><script type="text/javascript">
function toggleDiv(divid){
if(document.getElementById(divid).style.display == 'none'){
document.getElementById(divid).style.display = 'block';
}else{
document.getElementById(divid).style.display = 'none';
}
}
</script></head><body>
<!-- userBodyTop goes here -->
<div class="document">
<p class="Normal DocDefaults "><span style="font-weight: bold;">Hi</span><span style="white-space:pre-wrap;"> </span>[name]<span style="white-space:pre-wrap;">. </span><span style="font-weight: bold;color: #FF0000;">your</span><span style="white-space:pre-wrap;"> ac is</span><span style="white-space:pre-wrap;"> </span>[acc_no]<span style="white-space:pre-wrap;">, and </span><span style="font-weight: bold;color: #FF0000;">your</span><span style="white-space:pre-wrap;"> password </span><span style="white-space:pre-wrap;">is </span>[password].</p>
<p class="Normal DocDefaults ">Thanks you.</p></div>
<!-- userBodyTail goes here -->
</body></html>
我想要使用此字符串.doc或.docx文件以HTML格式srting。 doc或docx應該保存在目錄和數據庫中的鏈接下載。要做什麼?
你嘗試過什麼嗎?你有沒有見過http://www.phpdocx.com/? – Chris
phpdocx需要服務器中的pdf和zip模塊。但我無法安裝這些模塊。所以我正在爲核心PHP代碼進行接口。上面的字符串可以導出爲doc並且用戶可以保存它。但我的要求是將其保存在服務器目錄和目錄鏈接到數據庫以供以後下載 – user989184
當我在瀏覽器中顯示HTML(文檔保存爲網頁)時,文檔格式正常顯示。當我將它導出到doc時,樣式顯示不正確。有什麼問題? – user989184