contains() contains(string $haystack, string|array $needles) : bool 检查字符串中是否包含某些字符串 Parameters string $haystack string|array $needles Returns bool —
endsWith() endsWith(string $haystack, string|array $needles) : bool 检查字符串是否以某些字符串结尾 Parameters string $haystack string|array $needles Returns bool —
startsWith() startsWith(string $haystack, string|array $needles) : bool 检查字符串是否以某些字符串开头 Parameters string $haystack string|array $needles Returns bool —
random() random(int $length = 6, int $type = null, string $addChars = '') : string 获取指定长度的随机字母数字组合的字符串 Parameters int $length int $type string $addChars Returns string —
substr() substr(string $string, int $start, int|null $length = null) : string 截取字符串 Parameters string $string int $start int|null $length Returns string —
snake() snake(string $value, string $delimiter = '_') : string 驼峰转下划线 Parameters string $value string $delimiter Returns string —