powershell不显示或输出布尔值和递增值

时间:2018-02-09 16:36:53

标签: php laravel powershell tinker

我在Windows 10下使用虚拟机和家庭虚拟机。 当我运行php artisan tinker并尝试找到App\User::first()的用户时, 它返回:

Psy Shell v0.8.17 (PHP 7.1.7-1+ubuntu16.04.1+deb.sury.org+1 — cli) by Justin Hileman
>>> App\User::first()
=> App\User {#70
     id:  ,        // no number here
     name: "free",
     email: "free@email.com",
     created_at: "1998-06-26 06:05:38",
     updated_at: "2018-02-09 15:31:47",
     is_admin:  ,  // no boolean here
   }

如果我复制上面的这些代码并粘贴,它将正确显示如下:

=> App\User {#70
     id: 1,
     name: "free",
     email: "free@email.com",
     created_at: "1998-06-26 06:05:38",
     updated_at: "2018-02-09 15:31:47",
     is_admin: 1,
   }

它工作正常并且使用git-bash完全显示,我认为问题是关于powershell。但我不知道如何修复它。我已经谷歌了,但是没有人问这个问题。

enter image description here

仍然无法修复它,谷歌没有显示它。很奇怪...希望有人知道。

0 个答案:

没有答案