租房掌柜微信小程序Api以及小程序前端模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
ahbmz 3b5ce47f81 租房掌柜微信小程序Api以及前端小程序模板 4 years ago
..
src 租房掌柜微信小程序Api以及前端小程序模板 4 years ago
.gitignore 租房掌柜微信小程序Api以及前端小程序模板 4 years ago
LICENSE 租房掌柜微信小程序Api以及前端小程序模板 4 years ago
README.md 租房掌柜微信小程序Api以及前端小程序模板 4 years ago
composer.json 租房掌柜微信小程序Api以及前端小程序模板 4 years ago

README.md

thinkphp6 常用的一些扩展类库

基于PHP7.1+

以下类库都在\\think\\helper命名空间下

Str

字符串操作

// 检查字符串中是否包含某些字符串
Str::contains($haystack, $needles)

// 检查字符串是否以某些字符串结尾
Str::endsWith($haystack, $needles)

// 获取指定长度的随机字母数字组合的字符串
Str::random($length = 16)

// 字符串转小写
Str::lower($value)

// 字符串转大写
Str::upper($value)

// 获取字符串的长度
Str::length($value)

// 截取字符串
Str::substr($string, $start, $length = null)