Yaf_Loader::getNamespacePath

(Yaf >=3.2.0)

Yaf_Loader::getNamespacePathRetieve path of a registered namespace

Descrizione

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

retrieve path of a registered namespace

Elenco dei parametri

namespace

a string of namespace.

Valori restituiti

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

Esempi

Example #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