转自:http://www.jbxue.com/article/6348.html
之前介绍过php生成word的例子,只是不能包含图片与链接。
今天 为大家介绍一个 php 生成 导出word(可包含图片)的代码,有需要的朋友可以参考下。
1、生成word的类 docclass.php:
<?php
/***********************************************************************
Class: Mht File Maker
Version: 1.2 beta
Link:www.jbxue.com
Author: Wudi <wudicgi@yahoo.de>
Description: The class can make .mht file.
***********************************************************************/
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 = strtolower()(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: $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 ('Not set the first page.');
}
$filepath = str_replace($this->dir_base, '', $this->page_first);
$filepath = 'http://mhtfile' . $filepath;
$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' . $filepath;
$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 {
return TRUE;
}
}
function GetFile(){
$this->CheckHeaders();
if (!$this->CheckFiles()) {
exit ('No file was added.');
}
$contents = implode("rn", $this->headers);
$contents .= "rn";
$contents .= "MIME-Version: 1.0rn";
$contents .= "Content-Type: multipart/related;rn";
$contents .= "tboundary="{$this->boundary}";rn";
$contents .= "ttype="" . $this->files[0]['mimetype'] . ""rn";
$contents .= "X-MimeOLE: Produced By Mht File Maker v1.0 betarn";
$contents .= "rn";
$contents .= "This is a multi-part message in MIME format.rn";
$contents .= "rn";
foreach ($this->files as $file) {
$contents .= "--{$this->boundary}rn";
$contents .= "Content-Type: $file[mimetype]rn";
$contents .= "Content-Transfer-Encoding: $file[encoding]rn";
$contents .= "Content-Location: $file[filepath]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, $contents);
fclose($fp);
}
function GetMimeType($filename){
$pathinfo = pathinfo($filename);
switch ($pathinfo['extension']) {
case 'htm': $mimetype = 'text/html'; break;
case 'html': $mimetype = 'text/html'; break;
case 'txt': $mimetype = 'text/plain'; break;
case 'cgi': $mimetype = 'text/plain'; break;
case 'php': $mimetype = 'text/plain'; break;
case 'css': $mimetype = 'text/css'; break;
case 'jpg': $mimetype = 'image/jpeg'; break;
case 'jpeg': $mimetype = 'image/jpeg'; break;
case 'jpe': $mimetype = 'image/jpeg'; break;
case 'gif': $mimetype = 'image/gif'; break;
case 'png': $mimetype = 'image/png'; break;
default: $mimetype = 'application/octet-stream'; break;
}
return $mimetype;
}
}
?>
2、导出word文件 exportdoc.php
<?php
/**
* 根据HTML代码获取word文档内容
* 创建一个本质为mht的文档,该函数会分析文件内容并从远程下载页面中的图片资源
* 该函数依赖于类MhtFileMaker
* 该函数会分析img标签,提取src的属性值。但是,src的属性值必须被引号包围,否则不能提取
*
* @param string $content HTML内容
* @param string $absolutePath 网页的绝对路径。如果HTML内容里的图片路径为相对路径,那么就需要填写这个参数,来让该函数自动填补成绝对路径。这个参数最后需要以/结束
* @param bool $isEraseLink 是否去掉HTML内容中的链接
*/
include_once("docclass.php");
function getWordDocument( $content , $absolutePath = "" , $isEraseLink = true )
{
$mht = new MhtFileMaker();
if ($isEraseLink)
$content = preg_replace('/<as*.*?s*>(s*.*?s*)</a>/i' , '$1' , $content); //去掉链接
$images = array();
$files = array();
$matches = array();
//这个算法要求src后的属性值必须使用引号括起来
if ( preg_match_all('/<img[.n]*?srcs*?=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();
}
$content=implode("",file("http://www.jbxue.com/print.php?id=3548"));
$fileContent = getWordDocument($content,".");
$fp = fopen("hugesky_word.doc", 'w');
fwrite($fp, $fileContent);
fclose($fp);
?>
php导出word格式文档的实例代码
php生成excel或word文档的最简单方法
php生成word文档(读取数据库)
php生成word最简单的例子
php使用phpword生成word文档的例子
php生成word文件的简单范例
php生成word的例子
php使用phpword生成word文档
相关推荐
总的来说,PHP导出Word文档并保持样式,虽然涉及一些复杂性,但通过使用如PHPOffice/PHPWord这样的库,可以简化这个过程。开发者需要对HTML、CSS、PHP以及可能的第三方库有深入的理解,才能有效地实现这一功能。在...
在实际应用中,"PHP导出WORD"的场景可能包括用户从数据库中选择数据并将其导出为Word报告,或者是将网页内容转换为可编辑的文档格式。为了确保导出的文档质量,开发者需要注意字体兼容性、图像处理、样式一致性等...
本示例提供了一个“php导出word完美demo”,涵盖了如何使用PHP与Microsoft Office的Word文档交互的关键知识点。下面我们将深入探讨这些技术细节。 1. **PHPWord库的使用** `index.php`和`WordHelper.php`文件很...
生成Word文档的过程通常包括以下步骤: 1. **数据准备**:从数据库中获取需要展示在Word文档中的内容。这可能涉及到SQL查询,以及对查询结果的处理,如格式化数据、拼接字符串等。 2. **创建Word对象**:在`...
在线导出Word文件是Web应用中常见的功能,它允许用户在网页上操作并直接将结果保存为Microsoft Word文档。这一过程涉及到多个技术层面,包括前端交互、后端处理以及文件格式转换。以下是对这一主题的详细阐述: 1. ...
"mysql表导出word"的功能就是为了解决这种需求,它允许我们将MySQL数据库中的表格数据转换成Microsoft Word文档,便于管理和共享。 首先,让我们深入了解一下MySQL中的数据导出。MySQL提供了一个名为`mysqldump`的...
这个最新的PHPword整合主要关注了表格的处理,包括添加表格、行内换行以及单元格的合并,这些都是在处理复杂文档时非常重要的功能。下面将详细介绍这些知识点。 首先,`PHPWord` 是一个用PHP编写的开源库,它允许...
在PHP开发中,生成和处理Microsoft Word文档是一项常见的需求,尤其在企业级应用中,如报告生成、数据导出等。phpWord是一个强大的开源库,专为PHP设计,用于创建、编辑和读取.docx格式的文件。本次我们关注的是其...
本项目提供的"网页div内容导出Word(可用版)"压缩包文件,显然是一个能够实现这一功能的工具或代码示例。 要理解这个工具的工作原理,我们需要了解几个关键概念: 1. **HTML与CSS**:HTML(超文本标记语言)是...
3. **PHP导出Excel** PHP中,可以使用PHPExcel库来完成Excel文件的生成。这个库提供了丰富的API,用于创建、读取、编辑和保存Excel文件。创建Excel文件的基本步骤与C#和Java相似,但语法有所不同。 4. **样式设置*...
将这两个概念结合在一起,"ssh2+ajx导入导出word"是指通过SSH2连接远程服务器,并使用AJX技术来实现Word文档的导入与导出功能。这个实例可能是为了解决在Web应用中,用户能够方便地上传、下载和处理Word文档的需求。...
PHPOffice是包含多个组件的PHP库,包括了PHPWord、PHPPresentation等,用于处理Microsoft Office相关的文件格式。PHPWord允许开发者通过PHP脚本生成复杂的Word文档,包括文本、图片、表格、页眉、页脚等元素。 在...
PHPWord基于OpenXML标准,这是一个由Microsoft制定的文件格式规范,包括Word、Excel和PowerPoint等Office文档的结构和内容。通过PHPWord,开发者可以创建新的Word文档,或者打开已有的.docx文件进行编辑。 1. **...
标题中的“flex 导出word”指的是在Adobe Flex这一编程环境中,如何将数据或内容导出为Microsoft Word文档。Flex是一种基于ActionScript的开源框架,主要用于构建富互联网应用程序(RIA)。在Flex应用中,可能需要将...
这个中文手册详细地介绍了如何利用PHPWord进行各种操作,包括基础属性设置、文档读取、内容修改以及图片和表格处理。通过学习和实践这个手册,开发者可以轻松地在Web应用中集成Word处理功能,实现数据导出、报告生成...
在PHP开发中,生成Word文档是一项常见的需求,特别是在自动化报告、数据导出或者自定义文档创建的场景下。`PHPWord`是一个强大的PHP库,它允许开发者通过PHP代码来创建、编辑和操作Microsoft Word文档。这个库是`...
HTML到Word转换是一个常见的需求,尤其在数据导出、网页保存或者报告生成等场景中。...为了达到“无缝对接”的效果,需要精心设计和实现转换算法,确保所有元素,包括样式和图片,都能在Word文档中完美呈现。
5. **导出文档**:生成的Word文档可以通过`save()`方法保存到本地,或者使用`writeString()`方法生成一个包含文档内容的字符串。 ```php $objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, '...
这个库的开发版本,"PHPWord-develop.zip",包含了最新的源代码、可能的改进、修复和未发布的特性。在深入探讨这个库之前,我们需要了解一些基本概念。 1. **PHP**: PHP是一种广泛使用的服务器端脚本语言,主要用于...