本文整理汇总了PHP中filesystem::search_files方法的典型用法代码示例。如果您正苦于以下问题:PHP filesystem::search_files方法的具体用法?PHP filesystem::search_files怎么用?PHP filesystem::search_files使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类filesystem
的用法示例。
在下文中一共展示了filesystem::search_files方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: autoload
<?php
namespace rude;
require_once 'rude-globals.php';
require_once 'rude-filesystem.php';
$_source_list = filesystem::search_files(realpath(__DIR__ . '/../'), 'php');
# scan for .php files
function autoload($class_name)
{
global $_source_list;
if (!$_source_list) {
return;
}
$class_name = explode('\\', $class_name)[1];
# rude\warcraft_map => warcraft_map
$class_name = str_replace('_', '-', $class_name);
# warcraft_map => warcraft-map
foreach ($_source_list as $source_path) {
$source_file = basename($source_path);
if ($source_file == 'rude-' . $class_name . '.php') {
if (file_exists($source_path)) {
require_once $source_path;
return;
}
}
}
}
spl_autoload_register('rude\\autoload');
# show all errors/warnings/stricts
if (defined('RUDE_DEBUG') and RUDE_DEBUG) {