我正在使用laravel应用程序,我不仅要输入参数和选项,还想知道是否有一种可以输入文件的方式。我希望从其他API导入很多数据,而我正在使用Guzzle做到这一点。
很多时候,每次数据库重置时都会导入相同的数据。这就是为什么我首先将数据导入json文件集合中,然后每次都使用该集合将数据插入数据库中,从而节省了每次从其他API提取数据的时间。
现在,我正在对使用的文件进行硬编码,但是有没有一种方法可以通过我在命令行中为console命令指定参数和选项的文件来获取文件?
有很多方法可以做到这一点。
一种选择是将文件路径作为命令参数传递,然后使用基本的file_get_contents()函数读取文件。
class YourCommand extends Command { public function fire() { dd(file_get_contents($this->argument('path')); } protected function getArguments() { return [['path', InputArgument::REQUIRED, "File path"]]; } }
您还可以使用Laravel的文件系统库并设置本地存储(有关更多详细信息,请参阅https://laravel.com/docs/5.1/filesystem),然后将该文件放入storage / app文件夹中:
class YourCommand extends Command { public function fire() { dd(Storage::get($this->argument('path'))); } protected function getArguments() { return [['path', InputArgument::REQUIRED, "File path"]]; } }
如果要避免提供文件路径,最简单的方法是通过从I / O流中检索内容从STDIN流中读取文件:
class YourCommand extends Command { public function fire() { dd(file_get_contents('php://stdin')); } }
您只需要运行如下命令:
php artisan yourcommand < file.json