此包将为您的PHP应用程序添加`dd`和`dump`辅助函数。

v1.0.0 2022-03-20 11:08 UTC

This package is auto-updated.

Last update: 2024-09-20 16:35:24 UTC


README

此库将为您的PHP应用程序添加dddump辅助函数。

⚡️ 安装

运行

composer require tal7aouy/dd

✅ 使用

$arr = ['a'=>'a','b'=>b];
dd($arr);
// or 
dump($arr);

🤓 输出

^ array:2 [▼
  "a" => "a"
  "b" => "b"
]

🚀 对于Laravel

Laravel 已经在其辅助函数中包含了dd函数。此包中的dd函数与Laravel中的相同。

dd是由 tal7aouyBSD-3-Clause 许可下创建的。