我很想提出一个很好的建议来解决以下问题。对于一个平台,我必须创建 php word 文档,而恰好在 Apache 开发环境中,这段代码可以完美执行;然而,在 nginx 平台上,我不断收到主题提示的错误:
ZipArchive::close(): Failure to create temporary file: Permission denied
构建非常简单:
$phpWord = new \PhpOffice\PhpWord\PhpWord();
//code block as in the documentation
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord,'Word2007');
$objWriter->save('doorverwijzing_patient_xxxxxxxxxx.docx');
我在哪里更改 nginx 文件夹结构中的这些权限才能创建这些文档?