2

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

谢谢。

4

1 回答 1

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');
?>
于 2013-07-22T14:17:33.447 回答