Yaf_Loader::setLibraryPath

(Yaf >=2.1.4)

Yaf_Loader::setLibraryPathChange the library path

Description

public function Yaf_Loader::setLibraryPath(string $library_path, bool $is_global = false): Yaf_Loader

Change the library directory.

Parameters

library_path

The new library directory.

is_global

Whether to change the global library directory instead of the local one.

Return Values

Returns the loader instance itself.

Examples

Example #1 Yaf_Loader::setLibraryPath() example

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

/* change the local library directory */
$loader->setLibraryPath("/var/www/shop/application/library");

/* change the global library directory */
$loader->setLibraryPath("/usr/local/share/yaf/library", true);

echo $loader->getLibraryPath(), PHP_EOL;
echo $loader->getLibraryPath(true), PHP_EOL;
?>

The above example will output something similar to:

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

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.