开发者

xml file in browser using cakephp

开发者 https://www.devze.com 2022-12-15 20:53 出处:网络
I want to display xml file in broswer: for example: http://www.mysite.c开发者_如何学JAVAom/myfile.xml

I want to display xml file in broswer: for example: http://www.mysite.c开发者_如何学JAVAom/myfile.xml I know there is code snippet on net:

 App::import('Xml');
        $file = "filename.xml";
        $parsed_xml =& new XML($file);
        $parsed_xml = Set::reverse($parsed_xml); 

but this one display an array of the xml file. How could i display it simple xml file.

Thanks


http://book.cakephp.org/view/483/Creating-an-RSS-feed-with-the-RssHelper

0

精彩评论

暂无评论...
验证码 换一张
取 消