定制 romanlazko/str 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

romanlazko/str

Composer 安装命令:

composer require romanlazko/str

包简介

String helper functions.

README 文档

README

A comprehensive string manipulation library for PHP with multibyte support.

Installation

composer require romanlazko/str

Usage

Using the Str Class

use RomanLazko\Str\Str;

// Get string length
$length = Str::length('Hello World'); // 11

// Convert to kebab-case
$kebab = Str::kebab('fooBar'); // 'foo-bar'

// Convert to snake_case
$snake = Str::snake('fooBar'); // 'foo_bar'
// Convert to camelCase
$camel = Str::camel('foo-bar'); // 'fooBar'
// Convert to StudlyCase
$studly = Str::studly('foo_bar'); // 'FooBar'

// String manipulation
$reversed = Str::reverse('Hello'); // 'olleH'
$limited = Str::limit('This is a long string', 10); // 'This is a...'
$words = Str::words('This is a long string', 3); // 'This is a...'

Using the str() Helper

// Chainable string manipulation
$result = str('Hello World')
    ->upper()
    ->replace('WORLD', 'Universe')
    ->finish('!')
    ->toString();
// Result: 'HELLO UNIVERSE!'

Available Methods

String Case Conversion

  • camel(string $string): string - Convert to camelCase
  • kebab(string $string): string - Convert to kebab-case
  • snake(string $string, string $delimiter = '_'): string - Convert to snake_case
  • studly(string $string): string - Convert to StudlyCase
  • title(string $string): string - Convert to Title Case
  • ucfirst(string $string): string - Make first character uppercase
  • lcfirst(string $string): string - Make first character lowercase
  • upper(string $string): string - Convert to uppercase
  • lower(string $string): string - Convert to lowercase

String Manipulation

  • length(string $string, ?string $encoding = 'UTF-8'): int - Get string length
  • limit(string $string, int $limit = 100, string $end = '...'): string - Limit string length
  • words(string $string, int $words = 100, string $end = '...'): string - Limit number of words
  • reverse(string $string): string - Reverse the string
  • replace(string $string, string|array $search, string|array $replace, int $count = null): string - Replace text
  • repeat(string $string, int $times): string - Repeat string
  • slug(string $string, string $separator = '-'): string - Generate URL-friendly slug
  • substr(string $string, int $start, ?int $length = null, string $encoding = 'UTF-8'): string - Get substring
  • substrCount(string $string, string $needle): int - Count substring occurrences
  • substrReplace(string $string, string $replace, int $offset = 0, ?int $length = null): string - Replace text within portion of string
  • trim(string $string, string $charlist = " \t\n\r\v\0"): string - Strip whitespace from beginning and end
  • ltrim(string $string, string $charlist = " \t\n\r\v\0"): string - Strip whitespace from beginning
  • rtrim(string $string, string $charlist = " \t\n\r\v\0"): string - Strip whitespace from end
  • start(string $string, string $cap): string - Add string to start if not present
  • finish(string $string, string $cap): string - Add string to end if not present

String Checks

  • contains(string $string, string $needle): bool - Check if string contains substring
  • is(string $pattern, string $value): bool - Check if string matches pattern
  • startsWith(string $string, string $needle): bool - Check if string starts with substring
  • endsWith(string $string, string $needle): bool - Check if string ends with substring
  • isAscii(string $string): bool - Check if string is ASCII
  • isUuid(string $string): bool - Check if string is a valid UUID

Helper Methods

  • str($string = null) - Create a chainable string instance
    $result = str('hello')->upper()->finish('!'); // 'HELLO!'

License

This package is open-source software licensed under the MIT license.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

romanlazko/str 适用场景与选型建议

romanlazko/str 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 05 月 24 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 romanlazko/str 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 romanlazko/str 我们能提供哪些服务?
定制开发 / 二次开发

基于 romanlazko/str 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 5
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 23
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-05-24