php生成word最簡單的例子
php生成word最簡單的例子,所謂簡單即是美,小東東大用途,有用到的朋友參考下吧。就跟隨小編去了解下吧,想了解更多相關信息請 持續關注我們應屆畢業生考試網!
代碼示例:
<?php
class word
{
function start()
{
ob_start();
print'<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">';
}
function save($path)
{
print "</html>";
$data = ob_get_contents();
ob_end_clean();
$this->wirtefile ($path,$data);
}
function wirtefile ($fn,$data)
{
$fp=fopen($fn,"wb");
fwrite($fp,$data);
fclose($fp);
}
}
?>
【php生成word最簡單的例子】相關文章:
1.PHP生成Excel報表的方法
2.PHP生成樹的方法介紹
3.PHP生成縮略圖的方法
4.PHP生成Excel報表的方法介紹
5.PHP生成隨機密碼的方法
6.php怎么生成隨機密碼
7.生成PHP網站頁面靜態化的方法
8.如何在word文檔生成目錄
9.怎樣讓word自動生成目錄
这里有更多你想看的
|