-%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ               ÿÄ J  	     ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ              ÿÄ *        !1AQa‘"2q3±ð#b¡ÿÚ   ? ¼QxJQaÍuò¸Zö Úü8,ÐÚú
"SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5
ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍÑ¶¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e
ríV
..............................................................................................................................................................................
.............................................................................                                                  
                                                                                                                                                                                     ÿØÿà JFIF      ÿÛ „ 	 ( %!1!%)+//.383,7(-.+



-%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ               ÿÄ J  	     ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ              ÿÄ *        !1AQa‘"2q3±ð#b¡ÿÚ   ? ¼QxJQaÍuò¸Zö Úü8,ÐÚú
"SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5
ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍÑ¶¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e
ríV
..............................................................................................................................................................................
.............................................................................                                                  
                                                                                                                                                                                     --TEST--
Check for Yaf_Config_Ini gets
--SKIPIF--
<?php if (!extension_loaded("yaf")) print "skip"; ?>
--INI--
yaf.use_namespace=0
--FILE--
<?php 
$file = dirname(__FILE__) . "/simple.ini";

define("APPLICATION_PATH", __DIR__);
$config = new Yaf_Config_Ini($file);
var_dump(count($config->base));
var_dump(gettype($config->base->application->directory));

var_dump($config->base->routes->rewrite->route->controller);
var_dump($config->base["routes"]["rewrite"]["route"]["controller"]);
var_dump($config->get("base.routes.rewrite.route.controller"));

var_dump($config->base->get("routes.rewrite.match"));
var_dump($config["base.routes.rewrite.route.controllers"]);

$config = new Yaf_Config_Ini($file, "nocatch");
var_dump(count($config));
var_dump($config->get("routes.rewrite.match"));
var_dump($config->application->dispatcher->throwException);
var_dump($config->application["dispatcher"]["catchException"]);
?>
--EXPECTF--
int(5)
string(6) "string"
string(5) "Index"
string(5) "Index"
string(5) "Index"
string(17) "/yaf/:name/:value"
NULL
int(6)
string(15) "/yaf/:name/:age"
string(0) ""
string(1) "1"
