Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个项目,我们在其中使用 phpdocx 生成 word 文档。我们想获取生成文档的 url 或路径并将其发送到电子邮件。我们如何获取网址?谢谢!
生成文档时,将 $path 参数传递给 createdocx() 方法,如下所示:
<?php $docx = new CreateDocx(); $docx->addText('This is just a dummy text'); $docx->createDocx($path); ?>
这会在 $path 处生成文档。所以你总是有生成文档的路径