kexxt / php-string-helpers
Helpful string functions
v1.0.2
2020-08-23 19:32 UTC
Requires
- ext-iconv: *
- ext-intl: *
- ext-mbstring: *
- moontoast/math: ^1.2
- ramsey/uuid: 3.*
- voku/portable-ascii: ^1.5
Requires (Dev)
This package is not auto-updated.
Last update: 2025-03-31 06:47:07 UTC
README
=============
String helper functions wrapped into an easy to use class
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist go-redrock/php-string/helpers "*"
or add
"go-redrock/php-string/helpers": "*"
to the require section of your composer.json
file.
Usage
\Trac\Helper\Strings\Str
Visibility | Function |
---|---|
public static | after(string $subject, string $search) : string Return the remainder of a string after the first occurrence of a given value. |
public static | afterLast(string $subject, string $search) : string Return the remainder of a string after the last occurrence of a given value. |
public static | ascii(string $value, string $language='en' ) : stringTransliterate a UTF-8 value to ASCII. |
public static | before(string $subject, string $search) : string Get the portion of a string before the first occurrence of a given value. |
public static | beforeLast(string $subject, string $search) : string Get the portion of a string before the last occurrence of a given value. |
public static | between(string $subject, string $from, string $to) : string Get the portion of a string between two given values. |
public static | camel(string $value) : string Convert a value to camel case. |
public static | contains(string $haystack, string/string[] $needles) : bool Determine if a given string contains a given substring. |
public static | containsAll(string $haystack, string[] $needles) : bool Determine if a given string contains all array values. |
public static | endsWith(string $haystack, string/string[] $needles) : bool Determine if a given string ends with a given substring. |
public static | finish(string $value, string $cap) : string Cap a string with a single instance of a given value. |
public static | is(string/array $pattern, \string $value) : bool Determine if a given string matches a given pattern. |
public static | isAscii(string $value) : bool Determine if a given string is 7 bit ASCII. |
public static | isUuid(string $value) : bool Determine if a given string is a valid UUID. |
public static | kebab(string $value) : string Convert a string to kebab case. |
public static | length(string $value, string/null $encoding=null) : int Return the length of the given string. |
public static | limit(string $value, int $limit=100, string $end='...' ) : stringLimit the number of characters in a string. |
public static | lower(string $value) : string Convert the given string to lower-case. |
public static | orderedUuid() : \Ramsey\Uuid\UuidInterface Generate a time-ordered UUID (version 4). |
public static | random(int $length=16) : string Generate a more truly "random" alpha-numeric string. |
public static | replace(string $search, string $replace, string $subject) : string Replace all occurrences of a given value in the string. |
public static | replaceArray(string $search, array $replace, string $subject) : string Replace a given value in the string sequentially with an array. |
public static | replaceFirst(string $search, string $replace, string $subject) : string Replace the first occurrence of a given value in the string. |
public static | replaceLast(string $search, string $replace, string $subject) : string Replace the last occurrence of a given value in the string. |
public static | slug(string $title, string $separator='-' , string/string/null $language='en' ) : stringGenerate a URL friendly "slug" from a given string. |
public static | snake(string $value, string $delimiter='_' ) : stringConvert a string to snake case. |
public static | start(string $value, string $prefix) : string Begin a string with a single instance of a given value. |
public static | startsWith(string $haystack, string/string[] $needles) : bool Determine if a given string starts with a given substring. |
public static | studly(string $value) : string Convert a value to studly caps case. |
public static | substr(string $string, int $start, int/null $length=null) : string Returns the portion of string specified by the start and length parameters. |
public static | substrCount(string $haystack, string $needle, int $offset, int/null $length=null) : int Returns the number of substring occurrences. |
public static | title(string $value) : string Convert the given string to title case. |
public static | ucfirst(string $string) : string Make a string's first character uppercase. |
public static | upper(string $value) : string Convert the given string to upper-case. |
public static | uuid() : \Ramsey\Uuid\UuidInterface Generate a UUID (version 4). |
public static | words(string $value, int $words=100, string $end='...' ) : stringLimit the number of words in a string. |