maplephp/dto
Composer 安装命令:
composer require maplephp/dto
包简介
DTO library in PHP provides benefits such as encapsulating data, enforcing immutability and facilitating data transformation.
关键字:
README 文档
README
DTO stands for Darn Tidy Object, a playful twist on the traditional Data Transfer Object. But this isn’t your average DTO. It’s a fully-loaded toolkit for traversing, transforming, and tidying up structured data in PHP with style, power, and simplicity.
It also makes your life easier by ensuring every piece of data is returned in the correct type-helping. Whether you expect an int, string, bool, or even a callable, DTO gives you strict, reliable access to your data with minimal effort.
📦 Installation
composer require maplephp/dto
📘 Documentation
How It Works
DTO wraps your data arrays into a powerful, fluent object structure. Instead of cluttered array access, your code becomes expressive and self-documenting.
Before DTO
$name = isset($data['user']['profile']['name']) ? ucfirst(strip_tags($data['user']['profile']['name'])) : 'Guest';
With DTO
$name = $obj->user->profile->name ->strStripTags() ->strUcFirst() ->fallback('Guest') ->get();
Much tidier, right?
✨ Core Features
Smart Data Traversal
Access deeply nested data without ever worrying about undefined keys.
echo $obj->article->tagline->strToUpper(); // Result: 'HELLO WORLD' echo $obj->article->content->strExcerpt()->strUcFirst(); // Result: 'Lorem ipsum dolor sit amet...'
Correct Type Handling (with ease)
No more clunky is_numeric checks or intval casts. DTO makes it simple to extract values in the exact type you expect:
$orderId = $dto->order->id->toInt(); // Result: 1234 (int)
Handle flexible types cleanly with fallbacks:
$callback = $dto->settings->onReady->acceptType(['callable', 'null']); if (is_callable($callback)) { $callback(); // Result: Runs a startup hook or closure }
Built-In Data Transformation
Transform values directly using built-in helpers like:
Strings (str)
echo $obj->title->strSlug(); // Result: 'my-awesome-title'
Numbers (num)
echo $obj->filesize->numToFilesize(); // Result: '1.95 kb' echo $obj->price->numRound(2)->numToCurrency("USD"); // Result: $1,999.99
Dates (clock)
echo $obj->created_at->clockFormat('d M, Y', 'sv_SE'); // Result: '21 augusti 2025' echo $obj->created_at->clockIsToday(); // Result: true
HTML DOM Builder (dom)
echo $obj->heading->domTag("h1.title"); // Result: <h1 class="title">My Heading</h1>
Or nest elements with ease:
echo $obj->title->domTag("h1.title")->domTag("header"); // Result: <header><h1 class="title">Hello</h1></header>
Built-In Collection Support
Work with arrays of objects just as cleanly:
foreach ($obj->users->fetch() as $user) { echo $user->firstName->strUcFirst(); }
Modify Data on the Fly
Change values directly without verbose conditionals:
$updated = $obj->shoppingList->replace([0 => 'Shampoo']); print_r($updated->toArray());
Now go forth, write cleaner code, and let DTO handle the messy parts.
maplephp/dto 适用场景与选型建议
maplephp/dto 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 606 次下载、GitHub Stars 达 4, 最近一次更新时间为 2023 年 11 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「date」 「array」 「dom」 「utility」 「number」 「transform」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 maplephp/dto 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 maplephp/dto 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 maplephp/dto 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A set of useful PHP classes.
A library that provides basic utilities for creating HTML documents.
A bridge between SimpleXML and the DOM extension, plus a bunch of convenience methods
Tools to convert between .NET and PHP date formats
BigPipe: Pipelining web pages for high performance built in PHP.
Load DOM document safety
统计信息
- 总下载量: 606
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 25
- 依赖项目数: 9
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2023-11-29