在Laravel中使用dd()函数

时间:2018-09-19 11:43:16

标签: laravel dump

在Laravel中使用dd()函数时,如果我的输出看起来像这样,

Collection {#194 ▼
  #items: array:3 [▼
    0 => Post {#195 ▶}
    1 => Post {#196 ▶}
    2 => Post {#197 ▶}
  ]
}

诸如#194,#195等代码的含义是什么?他们有任何帮助吗?

1 个答案:

答案 0 :(得分:6)

根据 VarDumper 文档-这是 dd()在幕后使用的功能:

#14 is the internal object handle. It allows comparing two consecutive dumps of the same object. 

取决于要转储的项目是对象还是PHP资源,对于对象,您将看到,对于,将看到 @ >资源。在之后看到的数字是VarDumper分配给该对象的ID。它会显示出来,以便您多次转储同一对象时可以轻松识别转储。