课程' domdocument'发送电子邮件时找不到laravel

时间:2018-02-13 16:08:32

标签: php laravel web domdocument

我正在尝试使用邮件系统向用户发送验证邮件

Mail::to($thisUser->email)->send(new varifyEmail($thisUser));

但它给了我

Class 'DOMDocument' not found

这是给出此错误的函数

protected function createDomDocumentFromHtml($html)
{
    $document = new \DOMDocument('1.0', 'UTF-8'); // this is the line with error
    $internalErrors = libxml_use_internal_errors(true);
    $document->loadHTML(mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8'));
    libxml_use_internal_errors($internalErrors);
    $document->formatOutput = true;

    return $document;
}

任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

您必须安装DOM extension

如果您使用的是PHP 7:

对于Ubuntu:

apt-get install php7.0-xml

对于CentOS / Fedora / Red Hat:

yum install php70w-xml