ホーム > タグ > xml
xml
ActionScript3.0でXMLというかRSSをパースする
- 2008-12-15 (月)
- Flash
すごくはまった。
けれどここを見て解決。
まだAS3というかFlash自体色々勉強中の身です。
リファレンス以外にもしっかりとした本を買っておこうと思い、amazonで購入。
あとこれも便利そうなので購入。
新しいことを勉強するのは楽しいです。
- Comments: 0
- Trackbacks: 0
関連記事
cakephpでhttp通信し、xmlを取得して配列に入れる処理
- 2008-07-25 (金)
- php
cakephpを最近よくいじるのでその備忘録
App::import('HttpSocket');
App::import('Xml');
$http=&newHttpSocket();
$xml=&newXML($http->get('http://www.sj6.org/feed/'));
$xml=Set::reverse($xml);
pr($xml);
ほら、簡単でしょ!
と思ったら、こういう方法もあった
uses('Xml');
$xml = new XML("http://www.sj6.org/feed/");
$xml_array = Set::reverse($xml);
pr($xml);
楽チンやね。
- Comments: 0
- Trackbacks: 0
関連記事
Home > Tags > xml



