总结Golang实现PHP常用函数
时间:2021-01-20 17:45
下面由golang教程栏目给大家介绍Golang实现PHP常用函数,希望对需要的朋友有所帮助! # go-to-php(https://github.com/Echo-Mr-Pengw/go-to-php) 用Golang封装PHP常用的函数,为了区分PHP与Go中的函数,go-to-php封装的函数,都是在对应的PHP函数的前面加上大写的 安装 1.字符串相关包 2.数组相关包 字符串相关函数 更多golang相关技术文章,请访问go语言栏目! 以上就是总结Golang实现PHP常用函数的详细内容,更多请关注gxlsystem.com其它相关文章!P
。Pallord
函数除外。代码地址点击githubgo get -u github.com/Echo-Mr-Pengw/go-to-php/str
开发中
…….go-to-php封装函数 对应的PHP函数 Pimplode( glue
string , pieces
interface{}) stringimplode Pjoin( glue
string , pieces
interface{}) stringimplode的别名,同Pimplode Pexplode( delimiter
, str
string , limit
int) []stringexplode Pstrlen( str
string) intstrlen Pmb_strlen( str
string) intmb_strlen Plcfirst( str
string) stringlcfirst Pucfirst( str
string) stringucfirst Pstrtoupper( str
string) stringstrtoupper Pstrtolower( str
string) stringstrtolower Pucword( str
string) stringucword Ptrim( str
, character_mask
string) stringtrim Pltrim( str
, character_mask
string) stringltrim Prtrim( str
, character_mask
string) stringrtrim Pchop( str
, character_mask
string) stringrtrim的别名,同Prtrim Pmd5( str
string) stringmd5 Psha1( str
string) stringsha1 Pord( str
string) intord Pallord( str
string) interface{}转化全部字符,ord的升级版 Pchr( ascii
int32) stringchr Pecho( a ...
interface{})echo Pvar_dump( a ...
interface{})var_dump Pprint( a
interface{})print Pstr_repeat( input
string , multiplier
int) stringstr_repeat