我从食谱中关注这篇文章。 http://book.cakephp.org/2.0/en/core-utility-libraries/xml.html#Xml::build
$xmlpath = WWW_ROOT.'files/xml/'.$xmldetails['Xml']['xml_url'];
App::uses('Xml', 'Utility');
if(file_exists($xmlpath)){
$parsed_xml = Xml::build($xmlpath, array('return' => 'simplexml'));
pr($parsed_xml);
die();
}
这是我在控制器方法中编写的代码。我明白了
Fatal error: Call to undefined method Xml::build()
我不确定你明白了。
任何的想法?