Laravel 8 dd() {#collection-method}
2021-07-19 09:34 更新
dd
方法用于打印集合元素并中断脚本执行:
$collection = collect(['John Doe', 'Jane Doe']);
$collection->dd();
/*
Collection {
#items: array:2 [
0 => "John Doe"
1 => "Jane Doe"
]
}
*/
如果你不想中断执行脚本,请使用 dump
方法替代。
以上内容是否对您有帮助:
更多建议: