PHP 8.6.0 Beta 3 is available for testing

Yaf_Loader::getNamespacePath

(Yaf >=3.2.0)

Yaf_Loader::getNamespacePathRetrieve the library path of a class

説明

public function Yaf_Loader::getNamespacePath(string $class_name): string

Retrieve the library directory a class would be looked up in.

パラメータ

class_name

The class name whose library directory is requested.

戻り値

The local library directory if the class belongs to a registered local namespace, otherwise the global library directory (falling back to the local one when the global one is not set).

例1 Yaf_Loader::getNamespacePath() example

<?php
$app    = new Yaf_Application(__DIR__ . "/conf/application.ini");
$loader = Yaf_Loader::getInstance();

$loader->registerLocalNamespace("Models");
$loader->setLibraryPath("/usr/local/share/yaf/library", true);

/* "Models" is a registered local namespace */
echo $loader->getNamespacePath("Models_Product"), PHP_EOL;

/* other classes fall back to the global library directory */
echo $loader->getNamespacePath("Vendor_Payment"), PHP_EOL;
?>

上の例の出力は、 たとえば以下のようになります。

/var/www/shop/application/library
/usr/local/share/yaf/library

参考

add a note

User Contributed Notes

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