Yaf_Loader::getNamespacePath

(Yaf >=3.2.0)

Yaf_Loader::getNamespacePathRetieve path of a registered namespace

Opis

public Yaf_Loader::getNamespacePath ( string $namespaces ) : string

retrieve path of a registered namespace

Parametry

namespace

a string of namespace.

Zwracane wartości

string path, if the namespace is not registered, then NULL default library will be returned

Przykłady

Przykład #1 Yaf_Loader::registerNamespace()example

<?php
$loader 
Yaf_Loader::getInstance("/var/application/lib");
$loader->registerNamespace("\Vendor\PHP""/var/lib/php");

$loader->getNamespacePath("\Vendor\PHP"); // '/var/lib/php'
$loader->getNamespacePath("\Vendor\JSP"); // '/var/application/lib'

?>
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top