fwrw/text-helper
Composer 安装命令:
composer require fwrw/text-helper
包简介
library for text manipulation, including removing duplicate whitespaces and some common string operations
README 文档
README
Text Helper is a PHP Library, that helps with text/string manipulation.
Installation
To install, run this command inside your project directory in your terminal:
composer require fwrw/text-helper
Usage/Examples
To remove excessive whitespaces:
TextHelper::normalizeSpaces($text);
It will return the $text variable without them.
To cut a text:
TextHelper::cut($text, $limit);
It will cut the variable $text in the limit passed by param $limit. you can also put a final string at the end:
TextHelper::cut($text, $limit, $end);
In that case, the text will be cuted, and have a string (passed by param) at the end, example:
input TextHelper::cut($text, 20, "...");
out Lorem ipsum dolor am...
In order to avoid a word from separating in the middle, rather cut from the last whitespace by passing 'true' after the $end variable, by param:
input TextHelper::cut($text, 20, "...", true);
out Lorem ipsum dolor...
To remove accents:
TextHelper::stripAccents($text);
will return the $text variable cleaned, without any accent. Example:
input TextHelper::stripAccents("O dia está lindo");
out O dia esta lindo
To remove special characters:
TextHelper::clear($text);
will return the variable $text withour any special characters. You can also clear numbers and accents, just passin 'true' values by param:
input TextHelper::clear($text, $numbers, $accent);
in that case, the $text variable is going to be reformulated without any number, accent, or special character:
input TextHelper::clear("Bom dia, você está linda hoje!!1", true, true);
out Bom dia voce esta linda hoje
There are some other methods that are self-intuitive, feel free to read the code. :)
Author
fwrw/text-helper 适用场景与选型建议
fwrw/text-helper 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 01 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 fwrw/text-helper 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 fwrw/text-helper 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-01-02