aeforge/dumper

AEForge dumper组件。为任何PHP变量提供更好的dump功能

1.0.0 2023-10-22 23:06 UTC

This package is auto-updated.

Last update: 2024-09-23 17:27:26 UTC


README

AEForge dumper组件。为任何PHP变量提供更好的dump功能

安装

通过composer安装

  composer require aeforge/dumper

克隆项目

    https://github.com/aeforge/Dumper.git

使用/示例

示例(1)

use Aeforge\Dumper\Dumper;

// This will make it so the script will not exit after dumping the data
$dumper = new Dumper($_SERVER);
$dumper->dump();

示例(2)

use Aeforge\Dumper\Dumper;

// This will make it so the script will exit after dumping data
$dumper = new Dumper($_SERVER);
$dumper->dumpAndDie();

全局函数

以下是可以全局访问的函数,它们的作用与调用dumper类相同

  dd() //Will dump and die
  dump() //Will dump only without exiting