我尝试按照蛋糕书http://book.cakephp.org/2.0/en/core-libraries/helpers/rss.html中的这个简单说明实现rss feed 我收到了这个错误 “在第99行的lib / Cake / Utility / Xml.php中找不到类'DOMDocument'”
有任何线索吗?
答案 0 :(得分:20)
安装php-xml包,提供使用DOMDocument类所需的文件
答案 1 :(得分:6)
我遇到了同样的问题,安装了包。我尝试使用new DOMDocument();
加载它,但我必须使用$dom = new \DOMDocument();
希望这可以帮助人们使用CakePHP 3.x