<html>
 
<body>
 
<?php
 
include '../../A/Locator.php';
 
 
$locator = new A_Locator();
 
$locator->autoload();
 
echo "A_Locator autoload()<br/>";
 
 
/*
 
$duration = new A_Datetime_Duration();
 
if ($duration) echo "A_Datetime_Duration autoloaded<br/>";
 
$bar = new Bar();
 
$foobar = new Foo_Bar();
 
*/
 
 
$bar = new Bar();
 
$foobar = new Foo_Bar();
 
$alocator = new A_Locator();
 
if (class_exists('A_Locator')) {
 
    echo "A_Locator autoloaded<br/>";
 
}
 
?>
 
</body>
 
</html>
 
 |