(Yaf >=1.0.0)
Yaf_Loader::getLocalNamespace — Retrieve registered namespaces
Retrieve all registered local namespaces and their paths.
Bu işlevin bağımsız değişkeni yoktur.
An array of the registered local namespaces, keyed by the namespace prefix, or an empty array if none are registered.
Örnek 1 Yaf_Loader::getLocalNamespace() example
<?php
$app = new Yaf_Application(__DIR__ . "/conf/application.ini");
$loader = Yaf_Loader::getInstance();
$loader->registerLocalNamespace("Models");
$loader->registerLocalNamespace("Vendor", APPLICATION_PATH . "/library/Vendor");
print_r($loader->getLocalNamespace());
?>Yukarıdaki örnek şuna benzer bir çıktı üretir:
Array
(
[Models] => /var/www/shop/application/library
[Vendor] => /var/www/shop/application/library/Vendor
)