tentwofour/formatter
Composer 安装命令:
composer require tentwofour/formatter
包简介
Provides formatters for phone numbers, postal codes, etc.
README 文档
README
MoneyFormatter
Formats from cents => dollars, and vice-versa. Useful for database storage of monetary values, without needing a decimal column.
PHP's Type Juggling deals with string arguments, which may lead to unexpected results.
MoneyFormatter::dollarsToCents(12.00); // => 1200 MoneyFormatter::dollarsToCents(1200); // => 12.00
PhoneNumberFormatter
Formats a phone number to a flattened string (eg. no separators of any kind), and back to a human-readable style again.
Current human-readable formats are N/A style (+%d (%d) %d-%d).
Useful for normalizing database stored values and allowing application-varied formatting.
$f = new PhoneNumberFormatter('+14239170989'); $formatted = $f->format() // => +1 (423) 917-0989 $f->setPhoneNumber($formatted); $reverse = $f->reverseFormat(); // => +14239170989
PostalCodeFormatter
Formats a postal code to a flattened representation, and back again. Supports US & Canadian postal codes.
Useful for normalizing database stored values and allowing application-varied formatting.
$f = new PostalCodeFormatter('H0H 0H0'); $formatted = $f->format() // => h0h0h0 $f->setPostalCode($formatted); $reverse = $f->reverseFormat(); // => H0H 0H0
tentwofour/formatter 适用场景与选型建议
tentwofour/formatter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.52k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 07 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「ten24」 「tentwofour」 「data-transformations」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tentwofour/formatter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tentwofour/formatter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tentwofour/formatter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Twig extensions
The CMS Pages Bundle provides a common set of pages for the Kunstmaan CMS - HomePage, ContentPage, and Separator Page
Provides data transformers for Symfony2 Forms
String inflection library
Provides extra helpers for Symfony's Intl RegionBundle
Symfony implementation of the tentwofour/twig package
统计信息
- 总下载量: 1.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 30
- 依赖项目数: 2
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2015-07-08