jdz/dump 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-31

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固