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.
致命错误:在...中找不到类“DropDead\HomeBundle\Controller\DOMDocument”。
我需要安装 php-xml。我正在使用 OS X。无法找到如何安装此扩展程序。
你确定,你做对了吗?dom 扩展通常是默认编译的。
看起来您遇到了命名空间问题。尝试
$foo = new \DomDocument();
而不仅仅是 DomDocument() ,它应该有望运行。