我正在尝试将插件从 cakephp 1.3 迁移到 2.x。
原始代码
App::import('Core', 'Xml');
$Xml = new Xml($response);
$response = $Xml->toArray(false); // Send false to get separate elements
$Xml->__destruct();
$Xml = null;
我认为在 cakephp 2.x app::import('Core', 'Xml'); 世界成为App::import('Utility', 'Xml'); 我应该使用Xml::toArray(Xml::build($response)); . 然后我被卡住了。我很感激任何帮助。