我很好奇,我正在使用Laravel和Artisan进行迁移。是否有方法将信息输出到控制台?我似乎无法找到任何相关信息。例如:
<?php
class Generate_Sample_Users{
public function up(){
//Echo to console here
echo "Creating sample users...";
$generator = new Sample_Data();
$user_count = 30;
$users = array();
for($i=0; $i < $user_count; $i++){
array_push($users, $generator->generate_user($i));
}
DB::table('users')->insert($users);
}
public function down(){
DB::table('users')->delete();
}
}
答案 0 :(得分:46)
不知道你是使用Laravel 3还是Laravel 4,如果它也可以在Laravel 3中使用,但我在the docs中找到了它。
$this->info('Creating sample users...');
修改强>
如果您切换到database seeds,可以使用此功能显示消息
$this->command->info('Creating sample users...');
答案 1 :(得分:26)
这对我有用
use Symfony\Component\Console\Output\ConsoleOutput;
class MigrateData {
public function up()
{
$output = new ConsoleOutput();
for($i=0; $i<50000; $i++)
{
$output->writeln('Converting '.$i.' of 50000');
}
}
}
我有一个迁移,它将一个大表转换为一个更有效的格式,并使用它来获得一些进展。
答案 2 :(得分:7)
由于选择的答案自4.2以来似乎不起作用,我说只是保持简单:
public function up() {
// Migration runs //
echo 'Records processed' . PHP_EOL;
}
答案 3 :(得分:4)
对于Laravel5中的数据库种子,您可以使用
$this->command->getOutput()->writeln("<info>Your message here</info>");
在命令行上打印输出。
<info>
以绿色显示消息,其中<error>
以红色显示,可用于显示错误消息。
答案 4 :(得分:3)
我喜欢Dumper添加的颜色(在Laravel 5.3上测试过)。我认为看起来比使用回声更好。我对回声的问题在于它太容易被遗漏了,Dumper它增加了一点绿色,吸引了眼球:
public function up() {
// Migration runs //
(new Illuminate\Support\Debug\Dumper)->dump("A bit more colorful text");
}
答案 5 :(得分:2)
&#39; Symfony的\元器件\控制台\输出\ ConsoleOutput;&#39;在Laravel 5.2上为我工作
答案 6 :(得分:0)
谈到Laravel 5(您可以使用php artisan --version
检查版本),Migration基类没有打印方法。
一个简单的echo
就可以完成工作,但是,如果您愿意,可以对其进行扩展并添加以下功能:
abstract class MyMigration extends Migration
{
// colors for console echo
protected const COLOR_RED = 'COLOR_RED';
protected const COLOR_GREEN = 'COLOR_GREEN';
protected const COLOR_YELLOW = 'COLOR_YELLOW';
protected function logMessage($str, String $color = null)
{
switch ($color) {
case self::COLOR_RED:
$str = "\033[01;31m$str\033[0m";
break;
case self::COLOR_GREEN:
$str = "\033[01;32m$str\033[0m";
break;
case self::COLOR_YELLOW:
$str = "\033[01;33m$str\033[0m";
break;
echo $str . PHP_EOL;
}
}
}
,然后用您的消息简单地调用它:
$this->logMessage("Your message", self::COLOR_RED );
答案 7 :(得分:0)
只需使用print()
例如
$var = 'test';
print("\n$var");