迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
按《Phpword生成word文档》(https://www.xunruicms.com/doc/1103.html) 操作,我把test.docx应该放在了 dayrui\App\Demo\Controllers目录下,但是报错:Could not copy 'test.docx' file to 'C:\Users\Admin\AppData\Local\Temp\Php747A.tmp'。
<?php namespace Phpcmf\Controllers; class Doc extends \Phpcmf\Common{ public function index() { $phpWord = new \PhpOffice\PhpWord\PhpWord(); if ($phpWord === null) { echo "Error: The PhpWord object is null."; exit; } else { $section = $phpWord->addSection(); $section->addText('Hello World!'); $xmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007'); $xmlWriter->save('helloWorld.docx'); } } }