Laravel PHP -在Artisan Console输出中添加时间戳

06odsfpq  于 2024-01-05  发布在  PHP
关注(0)|答案(3)|浏览(303)

使用Laravel PHP框架。
对于App\Console\Command类,在Artisan控制台输出(即$this->info$this->error)前添加时间戳的最佳方法是什么?
我不想在每一行都重复一个时间戳方法,我宁愿它是自动的。
谢谢

3xiyfsfu

3xiyfsfu1#

一种方法来做到这一点(假设你在Laravel 5.0+上):
PrependsOutput.php

  1. <?php
  2. namespace App\Console\Commands;
  3. trait PrependsOutput
  4. {
  5. public function line($string)
  6. {
  7. parent::line($this->prepend($string));
  8. }
  9. public function comment($string)
  10. {
  11. parent::comment($this->prepend($string));
  12. }
  13. public function error($string)
  14. {
  15. parent::error($this->prepend($string));
  16. }
  17. public function info($string)
  18. {
  19. parent::info($this->prepend($string));
  20. }
  21. public function warn($string)
  22. {
  23. parent::warn($this->prepend($string));
  24. }
  25. protected function prepend($string)
  26. {
  27. if (method_exists($this, 'getPrependString')) {
  28. return $this->getPrependString($string).$string;
  29. }
  30. return $string;
  31. }
  32. }

字符串
PrependsTimestamp.php

  1. <?php
  2. namespace App\Console\Commands;
  3. trait PrependsTimestamp
  4. {
  5. protected function getPrependString($string)
  6. {
  7. return date(property_exists($this, 'outputTimestampFormat') ?
  8. $this->outputTimestampFormat : '[Y-m-d H:i:s]').' ';
  9. }
  10. }


在你的命令下:

  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. class MyCommand extends Command
  5. {
  6. use PrependsOutput, PrependsTimestamp;
  7. protected $signature = 'mycommand';
  8. protected $description = '';
  9. // you can override the default format
  10. // protected $outputTimestampFormat = '(m/d/Y H:i:s)';
  11. public function handle()
  12. {
  13. $this->comment('comment');
  14. $this->info('info');
  15. $this->warn('warn');
  16. $this->error('error');
  17. $this->line('line');
  18. }
  19. }


结果:


的数据

展开查看全部
6ss1mwsb

6ss1mwsb2#

从laravel 5.5开始,你可以添加这个特性。
并在控制台命令中使用它

  1. <?php
  2. namespace App\Console;
  3. trait PrependsTimestamp
  4. {
  5. public function line($string, $style = null, $verbosity = null)
  6. {
  7. $timestamped = date('[Y-m-d H:i:s] ') . ucfirst($style) . ': ' . $string;
  8. $styled = $style ? "<$style>$timestamped</$style>" : $timestamped;
  9. $this->output->writeln($styled, $this->parseVerbosity($verbosity));
  10. }
  11. }

字符串

相同输出:


的数据

展开查看全部
4bbkushb

4bbkushb3#

@peterm的答案针对Laravel 5.8(可能更早)进行了调整:

  • 需要遵循line()的父方法签名。
  • 重写line()足以为所有输出类型前置文本

PrependsOutput.php

  1. <?php
  2. namespace App\Console\Commands;
  3. trait PrependsOutput
  4. {
  5. public function line($string, $style = null, $verbosity = null)
  6. {
  7. parent::line($this->prepend($string), $style, $verbosity);
  8. }
  9. protected function prepend($string)
  10. {
  11. if (method_exists($this, 'getPrependString')) {
  12. return $this->getPrependString($string) . $string;
  13. }
  14. return $string;
  15. }
  16. }

字符串
PrependsTimestamp.php

  1. <?php
  2. namespace App\Console\Commands;
  3. trait PrependsTimestamp
  4. {
  5. protected function getPrependString($string)
  6. {
  7. return date(property_exists($this, 'outputTimestampFormat') ?
  8. $this->outputTimestampFormat : '[Y-m-d H:i:s]').' ';
  9. }
  10. }


在你的命令下:

  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. class MyCommand extends Command
  5. {
  6. use PrependsOutput, PrependsTimestamp;
  7. protected $signature = 'mycommand';
  8. protected $description = '';
  9. // you can override the default format
  10. // protected $outputTimestampFormat = '(m/d/Y H:i:s)';
  11. public function handle()
  12. {
  13. $this->comment('comment');
  14. $this->info('info');
  15. $this->warn('warn');
  16. $this->error('error');
  17. $this->line('line');
  18. }
  19. }


结果:
x1c 0d1x的数据

展开查看全部

相关问题