effectra/to-string
Composer 安装命令:
composer require effectra/to-string
包简介
The Effectra ToString package.
README 文档
README
to-string is a PHP library that provides various utility classes for string manipulation and conversion. It offers functionality to convert text case, strip tags, generate slugs, format arrays, and handle date/time values.
Installation
You can install the to-string library via Composer. Run the following command in your project directory:
composer require effectra/to-string
Usage
TextToString
toUppercase(string $text): string
Converts a string to uppercase.
use Effectra\ToString\TextToString; $textToString = new TextToString(); $result = $textToString->toUppercase('Hello, World!'); echo $result; // Output: HELLO, WORLD!
toLowercase(string $text): string
Converts a string to lowercase.
use Effectra\ToString\TextToString; $textToString = new TextToString(); $result = $textToString->toLowercase('Hello, World!'); echo $result; // Output: hello, world!
strip(string $text): string
Strips HTML and PHP tags from a string.
use Effectra\ToString\TextToString; $textToString = new TextToString(); $result = $textToString->strip('<p>Hello, <b>World!</b></p>'); echo $result; // Output: Hello, World!
nameVar($variable): string
Extracts the variable name from the caller's context.
use Effectra\ToString\TextToString; $textToString = new TextToString(); $myVariable = 'Hello, World!'; $result = $textToString->nameVar($myVariable); echo $result; // Output: myVariable
textToSlug($text): string
Converts a string to a URL-friendly slug.
use Effectra\ToString\TextToString; $textToString = new TextToString(); $result = $textToString->textToSlug('Hello, World!'); echo $result; // Output: hello-world
slugToText($slug): string
Converts a URL-friendly slug back to readable text.
use Effectra\ToString\TextToString; $textToString = new TextToString(); $result = $textToString->slugToText('hello-world'); echo $result; // Output: Hello World
generateRandomText($length): string
Generates a random text of specified length.
use Effectra\ToString\TextToString; $textToString = new TextToString(); $result = $textToString->generateRandomText(8); echo $result; // Output: C4rN1QX7
ArrayToString
array(array $array): string
Converts an array to a string representation.
use Effectra\ToString\ArrayToString; $result = ArrayToString::array(['apple', 'banana', 'cherry']); echo $result; // Output: ['apple', 'banana', 'cherry']
arrayToText(array $data, string $separator = ','): string
Converts an array to a string by joining its elements with a separator.
use Effectra\ToString\ArrayToString; $result = ArrayToString::arrayToText(['apple', 'banana', 'cherry']); echo $result; // Output: apple,banana,cherry
arrayToSlug(array $data): string
Converts an array to a URL-friendly slug by joining its elements with a separator.
use Effectra\ToString\ArrayToString; $arrayToString = new ArrayToString(); $result = $arrayToString->arrayToSlug(['apple', 'banana', 'cherry']); echo $result; // Output: apple-banana-cherry
arrayToTextKeyValue($data): string
Converts an array or JSON string to a key-value pair string representation.
use Effectra\ToString\ArrayToString; $arrayToString = new ArrayToString(); $result = $arrayToString->arrayToTextKeyValue(['name' => 'John', 'age' => 25, 'city' => 'New York']); echo $result; /* Output: name: John, age: 25, city: New York, */
DateToString
formatTime(int $time): string
Formats a time value in seconds into HH:MM:SS format.
use Effectra\ToString\DateToString; $dateToString = new DateToString(); $result = $dateToString->formatTime(3600); // Assuming 3600 seconds is 1 hour echo $result; // Output: 01:00:00
formatDate(int $timestamp): string
Formats a timestamp into YYYY-MM-DD format.
use Effectra\ToString\DateToString; $dateToString = new DateToString(); $result = $dateToString->formatDate(time()); // Current timestamp echo $result; // Output: 2023-05-13
License
This library is licensed under the MIT License. See the LICENSE file for more information.
Contributing
Contributions are welcome! If you have any improvements or bug fixes, please submit a pull request.
Credits
The to-string library is developed and maintained by Effectra.
Support
For any questions or issues, please open an issue on GitHub.
Feel free to modify the README file according to your specific library details, such as author information, additional sections, or formatting preferences.
effectra/to-string 适用场景与选型建议
effectra/to-string 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 30 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 06 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 effectra/to-string 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 effectra/to-string 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 30
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 6
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-19