实例化目录中的所有类

时间:2014-01-22 11:11:56

标签: php laravel instantiation

我正在使用Laravel并创建工匠命令,但我需要通过调用

在start / artisan.php中注册每个命令。
Artisan::add(new MyCommand);

如何获取目录中的所有文件(app / commands / *),并在数组中实例化每一个文件?我想得到类似(伪代码)的东西:

$my_commands = [new Command1, new Command2, new Command3];
foreach($my_commands as $command){
    Artisan::add($command);
}

2 个答案:

答案 0 :(得分:11)

这是一种自动注册工匠命令的方法。 (此代码改编自Symfony Bundle auto-loader。)

function registerArtisanCommands($namespace = '', $path = 'app/commands')
{
    $finder = new \Symfony\Component\Finder\Finder();
    $finder->files()->name('*Command.php')->in(base_path().'/'.$path);

    foreach ($finder as $file) {
        $ns = $namespace;
        if ($relativePath = $file->getRelativePath()) {
            $ns .= '\\'.strtr($relativePath, '/', '\\');
        }
        $class = $ns.'\\'.$file->getBasename('.php');

        $r = new \ReflectionClass($class);

        if ($r->isSubclassOf('Illuminate\\Console\\Command') && !$r->isAbstract() && !$r->getConstructor()->getNumberOfRequiredParameters()) {
            \Artisan::add($r->newInstance());
        }
    }
}

registerArtisanCommands();

如果将其放在start/artisan.php文件中,app/commands中的所有命令都将自动注册(假设您遵循Laravel对命令和文件名的建议)。如果你像我一样命名命令,你可以像这样调用函数:

registerArtisanCommands('App\\Commands');

(这确实增加了一个全局函数,更好的方法是创建一个包。但这样可行。)

答案 1 :(得分:0)

<?php

$contents = scandir('dir_path');
$files = array();
foreach($contents as $content) {
  if(substr($content,0,1 == '.') {
    continue;
  }
  $files[] =  'dir_path'.$content;
}

它读取文件夹的内容,对其进行检查并保存文件名,包括$files数组中的路径。希望这就是你要找的东西

PS:我不熟悉laravel或工匠。所以,如果你必须使用特定的语义(如camelCase)来注册它们,那么请告诉我