<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
   <channel>
      <title>ディズニー総合案内所</title>
      <link>http://disney.gekikara.biz/</link>
      <description>東京ディズニーランド,ディズニーシーの新しいイベントやオススメの攻略ルートなどディズニーマニア必見コンテンツ満載です！！</description>
      <language>ja</language>
      <copyright>Copyright 2008</copyright>
      <lastBuildDate>Fri, 18 Jan 2008 00:32:09 +0900</lastBuildDate>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 
      
      <item>
         <title>01/18 大幅リニューアル</title>
         <description><![CDATA[<p>
久々に大幅リニューアルしました。ディズニー好きにはたまらないサイトを目指しますので、
今後ともよろしくお願いいたします。
</p>
<div class="rss">
<h2>ディズニー♪</h2>
<p>... 急遽ホテルを予約して 久々にディズニー行って来ました（^v^） 土曜はランドで日曜はシー そして・・雨のランドで強風のシー・・ めちゃくちゃ寒かったぁ?（>3<br />
<a href="http://blogs.yahoo.co.jp/nhra3585/20400633.html" target="_blank">続きを読む...</a>
</p>
<h2>東京2日目-ディズニーランド-</h2>
<p>残念ながら オスメント君似の人はいませんでした(・ω・`) ん〜 残念!!(笑) 午後2時からドリームス・オン・パレード"ムービン・オン"鑑賞の為、1時間前から場所とり!! ベンチはっけーーん(゜∀゜) 待ってる間に、お昼。 ミッキーマウスマン食<br />
<a href="http://ameblo.jp/w31sha1gli4tca19z/entry-10066207054.html" target="_blank">続きを読む...</a>
</p>
<h2>ＴＤＬに行ってきました！</h2>
<p>3連休の最後の日、14日に東京ディズニーランドへ行ってきました 以前に ... あとはトゥーンタウンでひとしきり遊んで… パレードもちょこっと見たよ。チーはミッキーを見て大騒ぎ 本当は夜のパレード見ていきたかったけど、さすがにカズマもチー ...<br />
<a href="http://bbb93.jugem.jp/?eid=118" target="_blank">続きを読む...</a>
</p>
<h2>［<b>ディズニー</b> リゾート］ミラコスタへ行ってきた【祝】叔母たちの150歳記念</h2>
<p><b>...</b> 妊娠と禁煙にTDRでお祝いしてきました 叔母夫婦とあたしら家族（父・母・姉・私）の６人でね  <b>ディズニーランド</b>は、先日の<b>パレード</b>中の事故による<b>パレード</b>の中止 さらに ミラコスタ→リゾートライン→バス乗り場→バスでは叔母たちが疲れるだろうし。<br />
<a href="http://disneyresort11.sublimeblog.net/article/1627058.html" target="_blank">続きを読む...</a>
</p>
<h2>ディズニーランドを憂う</h2>
<p>本日17日。ディズニーランドに行ってきました。シーと悩みましたが ... そして、一番びっくりしたのが、歩いている途中にパレード用の？大きな台車みたいなのが通りを通っていたこと。パレードの時間では全くないのに、一台だけが音もなく動いていました。 ...<br />
<a href="http://blogs.yahoo.co.jp/sanaemon55/13271970.html" target="_blank">続きを読む...</a>
</p>
</div>
]]></description>
         <link>http://disney.gekikara.biz/rss/0118.php</link>
         <guid>http://disney.gekikara.biz/rss/0118.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">rss</category>
        
         <pubDate>Fri, 18 Jan 2008 00:32:07 +0900</pubDate>
      </item>
      
      <item>
         <title>ムファサ</title>
         <description><![CDATA[
<p>
登場：1994年  ライオン・キング
</p>

<p>
シンバの父で、プライド・ランドの王。勇敢で賢い真のリーダーです。自分が何者なのか、生命の環の中でどのような位置を占めているのかを知っていて、息子のシンバにそれを伝えようとします。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00156";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"ムファサの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "ライオン・キング ムファサ";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/136/00156.php</link>
         <guid>http://disney.gekikara.biz/100/136/00156.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">ライオン・キング</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:59 +0900</pubDate>
      </item>
      
      <item>
         <title>ポット夫人</title>
         <description><![CDATA[
<p>
登場：1991年  美女と野獣
</p>

<p>
お城の料理を担当していましたが、ティーポットに変えられてしまいました。野獣とベルの間がうまくいくことを心から願っています。最後は、ティーカップに変えられた息子のチップと共に人間に戻ります。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00145";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"ポット夫人の画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "美女と野獣 ポット夫人";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/152/00145.php</link>
         <guid>http://disney.gekikara.biz/100/152/00145.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">美女と野獣</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>コグスワース</title>
         <description><![CDATA[
<p>
登場：1991年  美女と野獣
</p>

<p>
魔女に対して一晩の宿を断ったため、王子が野獣に変えられたのと同時に、置き時計にされてしまった、お城の元執事。ベルと野獣の愛が、一進一退するたびに一喜一憂する表情の変化がユニーク。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00144";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"コグスワースの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "美女と野獣 コグスワース";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/152/00144.php</link>
         <guid>http://disney.gekikara.biz/100/152/00144.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">美女と野獣</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>ルミエール</title>
         <description><![CDATA[
<p>
登場：1991年  美女と野獣
</p>

<p>
本来は召使頭ですが、魔女の呪いで王子が野獣に変えられたとき、燭台の姿にされてしまいました。お城に迷い込んだベルの父親を丁寧にもてなそうとするやさしい性格で、とくに女性への接し方はスマート。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00143";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"ルミエールの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "美女と野獣 ルミエール";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/152/00143.php</link>
         <guid>http://disney.gekikara.biz/100/152/00143.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">美女と野獣</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>野獣（ビースト）</title>
         <description><![CDATA[
<p>
登場：1991年  美女と野獣
</p>

<p>
冷淡な性格を戒めるため、野獣の姿にされた王子。人間に戻るためには、人を愛し、愛されなければなりません。野獣はベルとの出会いの中で、やさしい気持ちを持てるようになり、やがて王子の姿に戻ります。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00142";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"野獣（ビースト）の画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "美女と野獣 野獣（ビースト）";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/152/00142.php</link>
         <guid>http://disney.gekikara.biz/100/152/00142.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">美女と野獣</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>ベル</title>
         <description><![CDATA[
<p>
登場：1991年  美女と野獣
</p>

<p>
読書が好きで、いつも冒険を夢みている美女。野獣の城に閉じ込められた父の身代わりになる勇気を持っています。お城での暮らしの中で野獣への愛が芽生え、その告白によって野獣は人間に戻ります。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00141";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"ベルの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "美女と野獣 ベル";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/152/00141.php</link>
         <guid>http://disney.gekikara.biz/100/152/00141.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">美女と野獣</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>アースラ</title>
         <description><![CDATA[
<p>
登場：1989年  リトル・マーメイド
</p>

<p>
タコのような姿の海の魔女。美しい声と引き換えにアリエルに足を与え、恋を応援するようなふりをしますが、本当の狙いは、海の王国を乗っ取ること。最後は、エリックとの戦いに敗れて滅びます。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00140";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"アースラの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "リトル・マーメイド アースラ";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/139/00140.php</link>
         <guid>http://disney.gekikara.biz/100/139/00140.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">リトル・マーメイド</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>トリトン王</title>
         <description><![CDATA[
<p>
登場：1989年  リトル・マーメイド
</p>

<p>
海の支配者で、アリエルのお父さん。アリエルが人間界に憧れ、言いつけに従わないことに激怒します。でおそれは、娘の安全と幸せを願う、父親の気持ちの裏返し。最後はエリックとの結婚を許します。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00139";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"トリトン王の画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "リトル・マーメイド トリトン王";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/139/00139.php</link>
         <guid>http://disney.gekikara.biz/100/139/00139.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">リトル・マーメイド</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>エリック王子</title>
         <description><![CDATA[
<p>
登場：1989年  リトル・マーメイド
</p>

<p>
アリエルが憧れるハンサムな王子。まだ結婚など考えないエリックは、最初、アリエルの想いに気づきません。でも、愛に目覚めたエリックは、大切なアリエルを守るため、魔女アースラに立ち向かいます。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00138";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"エリック王子の画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "リトル・マーメイド エリック王子";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/139/00138.php</link>
         <guid>http://disney.gekikara.biz/100/139/00138.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">リトル・マーメイド</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>ガストン</title>
         <description><![CDATA[
<p>
登場：1991年  美女と野獣
</p>

<p>
見かけ倒しのうぬぼれ男。ベルに求愛しますが相手にされません。野獣がライバルと考えたガストンは、村人と共にお城を攻めます。ガストンに切られた野獣を助けたとき、ベルは野獣への愛を確信します。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00146";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"ガストンの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "美女と野獣 ガストン";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/152/00146.php</link>
         <guid>http://disney.gekikara.biz/100/152/00146.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">美女と野獣</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>アラジン</title>
         <description><![CDATA[
<p>
登場：1992年  アラジン
</p>

<p>
アグラバーに住む陽気な青年。市場で助けた王女ジャスミンに恋しますが、結婚できるのは王子だけ。ランプの魔法によって王子に変身しますが、苦難を乗り越えた時、本当の姿に戻って愛を実らせます。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00147";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"アラジンの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "アラジン アラジン";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/103/00147.php</link>
         <guid>http://disney.gekikara.biz/100/103/00147.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">アラジン</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>ジャスミン</title>
         <description><![CDATA[
<p>
登場：1992年  アラジン
</p>

<p>
アグラバー王国の王女。美しさの下に、自由を求めてお城を飛び出す勝ち気さを秘めています。街で出会ったアラジンやジーニーとの冒険を通して、人を外見だけで判断しない心の眼を磨いていきます。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00148";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"ジャスミンの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "アラジン ジャスミン";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/103/00148.php</link>
         <guid>http://disney.gekikara.biz/100/103/00148.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">アラジン</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>プンバァ</title>
         <description><![CDATA[
<p>
登場：1994年  ライオン・キング
</p>

<p>
不器用で、頭の回転の遅いイボイノシシ。でも、それを補って余りある人情の持ち主。放浪中のシンバを助け、さらにシンバが自らの運命に立ち向かおうとした時、真っ先に駆けつけたのもプンバァです。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00155";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"プンバァの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "ライオン・キング プンバァ";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/136/00155.php</link>
         <guid>http://disney.gekikara.biz/100/136/00155.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">ライオン・キング</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
      <item>
         <title>ティモン</title>
         <description><![CDATA[
<p>
登場：1994年  ライオン・キング
</p>

<p>
おしゃべりで頭の回転が速いミーアキャット。今のことしか考えないというのが信条で、王国を離れたシンバを元気づけます。ジョークや皮肉が多いのですが、本当は友人に忠実で暖かい性格です。
</p>

<p>
<?php

require_once("Cache/Lite.php");
require_once("XML/Parser.php");

$cacheoptions = array(
"cacheDir" => "../../../cache/",
"lifeTime" => 864000,
"automaticCleaningFactor" => "20",
);

$cache = new Cache_Lite($cacheoptions);

//Cacheするデータを見分ける一意的な名前
$id= "disneycharapics00154";

if ($cacheData = $cache->get($id)) {
	//Cacheしたファイルがあるとき
	$cacheData = unserialize($cacheData);

	print $cacheData;


}else{


/* Yahoo画像検索 */


$frag = (-1);     
$out = ""; 


class yahooParser extends XML_Parser 
{ 
    var $source; 
    var $n_nest; 


     
  function myParser() 
  { 
    parent::XML_Parser(); 
    $this->source = array(); 
    $this->n_nest = 0; 
  } 

 /** 
  * 要素の開始の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  * @param  array     属性 
  */ 


  function startHandler($xp, $name, $attribs) 
  { 

	if($name == "URL"){
	$this->n_nest++; 
	}
  } 

 /** 
  * 要素の終了の処理 
  * 
  * @access private 
  * @param  resource  xml パーサのリソース 
  * @param  string    要素の名前 
  */ 
  function endHandler($xp, $name) 
  { 
	if($name == "URL"){

	global $frag,$out;

	$temp = $this->source[$this->n_nest];

	if($frag < 0){
	}else{
 	$out = $out."<img src=\"$temp\" alt=\"ティモンの画像\">";
	}

	$this->source[$this->n_nest--] = ""; 
	$frag *= -1;
	}
  }


 /** 
  * 文字データの処理 
  * 
  * @access private 
  * @param  resource  xml parser resource 
  * @param  string    character data 
  */ 
  function cdataHandler($xp, $cdata) 
  { 
    $this->source[$this->n_nest] .= htmlspecialchars($cdata); 
  } 
} 

$p = &new yahooParser(); 

// キーワード指定
$keyword = "ライオン・キング ティモン";

// APIのURL

//$keyword = mb_convert_encoding($keyword, "UTF-8", "SJIS");

$url = "http://api.search.yahoo.co.jp/ImageSearchService/V1/imageSearch?appid=satouatb&query=".urlencode($keyword)."&results=3";

$result = $p->setInputFile($url); 
$result = $p->parse(); 

$out = $out."<br />";

	print $out;
	$savedata= $out;
	$cache->save(serialize($savedata), $id);

}

?>
</p>]]></description>
         <link>http://disney.gekikara.biz/100/136/00154.php</link>
         <guid>http://disney.gekikara.biz/100/136/00154.php</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">ライオン・キング</category>
        
         <pubDate>Thu, 17 Jan 2008 23:20:58 +0900</pubDate>
      </item>
      
   </channel>
</rss>
