PHPWord - 将HTML列表添加到.docx

时间:2015-11-09 12:30:18

标签: php phpword

我使用PHPWord从HTML生成.docx文件。 在我的HTML文件中,我遇到以下情况:

$comment

当我执行转换时,它显示一个空白区域。 我试图在parseChildNodes()方法中添加SPAN:

/**
 * Add comment
 *
 * @param \BlogBundle\Entity\Comment $comment
 *
 * @return Post
 */
public function addComment(\BlogBundle\Entity\Comment $comment)
{
182    $this->comments[] = $comment;
183    $comments->setPost($this); // Should be $comment->setPost($this);
184    return $this;
}

但它不起作用......它仍然显示一个空白区域。 如何在LI列表项中显示SPAN内容?

提前谢谢!

0 个答案:

没有答案