PHPWord 未将文件保存在 /tmp 目录中

问题描述

我正在尝试在 Mac 上的 here 中运行 PHPWord 的基本示例。

我使用 XAMPP 作为应用服务器。

我只更改了 require_once 部分并在文件名前添加了 sys_get_temp_dir(),因为“ZipArchive::close(): Failure to create temporary file: Permission denied错误this 问题相同。

我的index.PHP文件如下:

<?PHP
require_once 'vendor/autoload.PHP';

// Creating the new document...
$PHPWord = new \PHPOffice\PHPWord\PHPWord();

/* Note: any element you append to a document must reside inside of a Section. */

// Adding an empty Section to the document...
$section = $PHPWord->addSection();
// Adding Text element to the Section having font styled by default...
$section->addText(
    '"Learn from yesterday,live for today,hope for tomorrow. '
        . 'The important thing is not to stop questioning." '
        . '(Albert Einstein)'
);

/*
 * Note: it's possible to customize font style of the Text element you add in three ways:
 * - inline;
 * - using named font style (new font style object will be implicitly created);
 * - using explicitly created font style object.
 */

// Adding Text element with font customized inline...
$section->addText(
    '"Great achievement is usually born of great sacrifice,'
        . 'and is never the result of selfishness." '
        . '(Napoleon Hill)',array('name' => 'Tahoma','size' => 10)
);

// Adding Text element with font customized using named font style...
$fontStyleName = 'oneUserDefinedStyle';
$PHPWord->addFontStyle(
    $fontStyleName,'size' => 10,'color' => '1B2232','bold' => true)
);
$section->addText(
    '"The greatest accomplishment is not in never falling,'
        . 'but in rising again after you fall." '
        . '(Vince Lombardi)',$fontStyleName
);

// Adding Text element with font customized using explicitly created font style object...
$fontStyle = new \PHPOffice\PHPWord\Style\Font();
$fontStyle->setBold(true);
$fontStyle->setName('Tahoma');
$fontStyle->setSize(13);
$myTextElement = $section->addText('"Believe you can and you\'re halfway there." (Theodor Roosevelt)');
$myTextElement->setFontStyle($fontStyle);

echo(sys_get_temp_dir() . '/helloWorld.docx');
// Saving the document as OOXML file...
$objWriter = \PHPOffice\PHPWord\IOFactory::createWriter($PHPWord,'Word2007');
$objWriter->save(sys_get_temp_dir() . '/helloWorld.docx');

/* Note: we skip RTF,because it's not XML-based and requires a different example. */
/* Note: we skip PDF,because "HTML-to-PDF" approach is used to create PDF documents. */

但是它没有给出错误并且也没有创建 helloWorld.docx 文件。 这是什么原因,我该如何解决这个问题?

解决方法

(1) 请尝试更改

$objWriter->save(sys_get_temp_dir() . '/helloWorld.docx');

$objWriter->save('./helloWorld.docx');

(2) 确保您对当前文件夹具有写入权限。

(3) 运行程序,查看当前文件夹下是否创建了helloWorld.docx