我正在使用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);
}
答案 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
数组中的路径。希望这就是你要找的东西