jdz/dump
最新稳定版本:1.0.1
Composer 安装命令:
composer require jdz/dump
包简介
JDZ simple file dumper helper
README 文档
README
Simple file dumper helper
Installation
composer require jdz/dump
Requirements
- PHP 8.2 or higher
Usage
Basic Example
use JDZ\Utils\Dump; $dump = new Dump('/path/to/logfile.txt'); // Write content (appends to file) $dump->write('First line'); $dump->write('Second line'); // Read file contents $content = $dump->read(); // "First line\nSecond line\n" // Check if file exists $dump->exists(); // true // Delete file $dump->delete(); $dump->exists(); // false
Fluent Interface
write() and delete() return $this for chaining:
$dump = new Dump('/tmp/debug.log'); $dump->write('Starting process') ->write('Step 1 complete') ->write('Step 2 complete');
Reading a Non-Existent File
$dump = new Dump('/path/to/missing.txt'); $dump->read(); // null
Testing
composer test # or vendor/bin/phpunit
License
This project is licensed under the MIT License - see the LICENSE file for details.
统计信息
- 总下载量: 12
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-03-31