我的任务是将 Tinymce 编辑器加载到浏览器并进行编辑。编辑后,我尝试将编辑器值保存为 Microsoft 格式,为此我使用 Phpword 类。我包含文件路径,但我不能有一个致命错误说 require_once(../PhpWord.php): failed to open stream: No such file or directory。我已经将 Phpwrd.php 放在我要访问的目录中
我的代码是
require_once '../PhpWord.php';
$PHPWord = new PhpWord();
$section = $PHPWord->createSection();
// After creating a section, you can append elements:
$section->addText($data);
// At least write the document to webspace:
$$objWriter->save('helloWorld.docx');