fredericomartini/debug
Composer 安装命令:
composer require fredericomartini/debug
包简介
A simple class to print pretty values in PHP
README 文档
README
A simple class to print pretty values in PHP
Installation
There is one recommended way to install debug via Composer:
- adding the dependency to your
composer.jsonfile:
"require": { .. "fredericomartini/debug":"0.1.*", .. }
Simple usage
include_once 'Debug.php'; $var = array( 'value' => array( 'test' => 123 ), 'another_value' => '5555' ); \Fma\Debug::run($var);
Output
Array
(
[value] => Array
(
[test] => 123
)
[another_value] => 5555
)
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-11-26