在PHP中生成服务器文件系统中的word文档

时间:2013-07-21 05:41:59

标签: php ms-word

我需要尽快解决这个问题。我尝试了很多解决方案,但所有教程和示例都创建了文档并将word文件下载到本地计算机中。我想要的是上传或保存到服务器的文件系统。请帮我解决这个问题。

感谢。

1 个答案:

答案 0 :(得分:1)

PHPWord可以这样做:

http://phpword.codeplex.com/releases/view/49543

我尝试了 Examples / BasicTable.php ,它在服务器上创建文件但不下载。

以下是使用的代码:

<?php
require_once '../PHPWord.php';

// New Word Document
$PHPWord = new PHPWord();

// New portrait section
$section = $PHPWord->createSection();

// Add table
$table = $section->addTable();

for($r = 1; $r <= 10; $r++) { // Loop through rows
    // Add row
    $table->addRow();

    for($c = 1; $c <= 5; $c++) { // Loop through cells
        // Add Cell
        $table->addCell(1750)->addText("Row $r, Cell $c");
    }
}

// Save File
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
$objWriter->save('BasicTable.docx');
?>