我在 Windows 10 下使用带有 virtualbox 的虚拟机和宅基地。当我运行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 上。但我不知道如何解决它。我已经谷歌了,但没有人问过这样的问题。
仍然无法修复它,谷歌对此一无所知。奇怪...希望有人知道。