lixue / miniutils
A collection of useful functions.
dev-master / 1.0.x-dev
2018-03-17 07:16 UTC
Requires
- php: >=5.6
- satooshi/php-coveralls: ^1.0
Requires (Dev)
- phpunit/phpunit: ~5.7
This package is not auto-updated.
Last update: 2025-03-24 17:18:39 UTC
README
A collection of useful functions that implemented as classes.
Links
- Document: https://hy369.github.io/MiniUtils
Installation
composer require lixue/miniutils
Usage
MuString
utf8ToUnicode
Convert character from UTF-8 to Unicode.
Description
string utf8ToUnicode(string $str[, string $prefix = '\\u'[, string $suffix = ''[,
bool $reserveAscii = true]]])
Parameters
str
The string to be converted.
prefix
The prefix of string to be converted, the default is \u
suffix
The suffix of string to be converted, the default is empty string.
reserveAscii
Whether the ascii character will be converted or not.
unicodeToUtf8
string unicodeToUtf8(string $str[, string $prefix = '\\u'[, string $suffix = '']])
replaceSuffix
string replaceSuffix(string $str, string $suffix)
getSuffix
string getSuffix($str[, $withDot = false])
MuArray
keyMap
void function keyMap(array &$array, callable $callback)
merge
void merge(&$array1, ...$array2)
multiSort
void multiSort(&$array, $key[, $order = SORT_ASC[, $maintainIndex = false]])
MuDate
timestampToUtc
string timestampToUtc(int $timestamp[, bool $minTime = false])