本文整理匯總了PHP中Path::phpboost_path方法的典型用法代碼示例。如果您正苦於以下問題:PHP Path::phpboost_path方法的具體用法?PHP Path::phpboost_path怎麽用?PHP Path::phpboost_path使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Path
的用法示例。
在下文中一共展示了Path::phpboost_path方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: generate_classlist
/**
* @desc Generates the autoload cache file by exploring phpboost folders
*/
public static function generate_classlist()
{
if (!self::$already_reloaded) {
self::$already_reloaded = true;
self::$autoload = array();
include_once PATH_TO_ROOT . '/kernel/framework/io/filesystem/FileSystemElement.class.php';
include_once PATH_TO_ROOT . '/kernel/framework/io/filesystem/Folder.class.php';
include_once PATH_TO_ROOT . '/kernel/framework/io/filesystem/File.class.php';
include_once PATH_TO_ROOT . '/kernel/framework/io/IOException.class.php';
include_once PATH_TO_ROOT . '/kernel/framework/util/Path.class.php';
$phpboost_classfile_pattern = '`\\.class\\.php$`';
$paths = array('/', '/kernel/framework/core/lang');
foreach ($paths as $path) {
self::add_classes(Path::phpboost_path() . $path, $phpboost_classfile_pattern);
}
self::add_classes(Path::phpboost_path() . '/kernel/framework/io/db/dbms/Doctrine/', '`\\.php$`');
self::generate_autoload_cache();
}
}
示例2: test_get_classname_without_extension
public function test_get_classname_without_extension()
{
$classname = 'File';
$class_file = Path::phpboost_path() . '/kernel/framework/util/' . $classname;
self::assertEquals($classname, Path::get_classname($class_file));
}