joeyrush/better-dd
Composer 安装命令:
composer require joeyrush/better-dd
包简介
Die and dump with line number and file path
关键字:
README 文档
README
😅 Replace your dump / dd calls with dumpl / ddl to get the filepath and line number included. A simple but much needed feature! Works in both the browser and terminal.
Bonus: You can use the semantic history feature of iTerm to Command+Click the line number output in the terminal (You can customize which editor is chosen to open files via iTerm->Preferences->Profiles->Advanced->Semantic History)
Requirements
- Any version of laravel
Getting Started
You can install the package via composer:
composer require joeyrush/better-dd
...and that's all!
Usage
Exactly the same as dd:
dumpl($var1, $var2, $var3...); ddl($var1, $var2, $var3...);
Configuration: Output Truncation
When using the dump helpers inside the terminal, often output can be difficult to read due to the size. Sometimes you surpass your terminals buffer length and lose some data. For that reason, we've provided some truncation options via a config.
Disclaimer: This feature only applies to terminal output because there is very little point in truncating output in the browser because they can be collapsed interactively.
First publish the config with artisan:
php artisan vendor:publish --provider=JoeyRush\\BetterDD\\BetterDDServiceProvider
The following configuration are now available to customize to your needs (see config/better-dd.php after running the publish command)
/** * The following configuration values apply to any dumpl($var) / ddl($var) function calls. */ return [ /** * Truncate longs strings to a specified number of characters * Applies to all strings: i.e. actual strings and strings within variables etc. * Use -1 to disable truncation */ 'max_string_length' => -1, /** * Maximum depth of output * e.g. 2 will only show arrays within arrays. Anything deeper will get truncated to [...n] * where n represents the number of elements cut-off */ 'max_depth' => 20, 'max_items_per_depth' => -1 ];
Tests
After a composer install, run composer test
joeyrush/better-dd 适用场景与选型建议
joeyrush/better-dd 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 22.48k 次下载、GitHub Stars 达 5, 最近一次更新时间为 2019 年 03 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「better-dd」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 joeyrush/better-dd 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 joeyrush/better-dd 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 22.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-03-11