小編給大家分享一下Golang實(shí)現(xiàn)PHP常用函數(shù)有哪些,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)長期為1000多家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為察哈爾右翼前企業(yè)提供專業(yè)的網(wǎng)站建設(shè)、成都網(wǎng)站制作,察哈爾右翼前網(wǎng)站改版等技術(shù)服務(wù)。擁有十余年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
Golang實(shí)現(xiàn)PHP常用函數(shù)
# go-to-php(https://github.com/Echo-Mr-Pengw/go-to-php)
用Golang封裝PHP常用的函數(shù),為了區(qū)分PHP與Go中的函數(shù),go-to-php封裝的函數(shù),都是在對應(yīng)的PHP函數(shù)的前面加上大寫的P
。Pallord
函數(shù)除外。代碼地址點(diǎn)擊github
安裝
1.字符串相關(guān)包
go get -u github.com/Echo-Mr-Pengw/go-to-php/str
2.數(shù)組相關(guān)包開發(fā)中
…….
字符串相關(guān)函數(shù)
go-to-php封裝函數(shù) | 對應(yīng)的PHP函數(shù) |
---|---|
Pimplode(glue string , pieces interface{}) string | implode |
Pjoin(glue string , pieces interface{}) string | implode的別名,同Pimplode |
Pexplode(delimiter , str string , limit int) []string | explode |
Pstrlen(str string) int | strlen |
Pmb_strlen(str string) int | mb_strlen |
Plcfirst(str string) string | lcfirst |
Pucfirst(str string) string | ucfirst |
Pstrtoupper(str string) string | strtoupper |
Pstrtolower(str string) string | strtolower |
Pucword(str string) string | ucword |
Ptrim(str , character_mask string) string | trim |
Pltrim(str , character_mask string) string | ltrim |
Prtrim(str , character_mask string) string | rtrim |
Pchop(str , character_mask string) string | rtrim的別名,同Prtrim |
Pmd5(str string) string | md5 |
Psha1(str string) string | sha1 |
Pord(str string) int | ord |
Pallord(str string) interface{} | 轉(zhuǎn)化全部字符,ord的升級(jí)版 |
Pchr(ascii int32) string | chr |
Pecho(a ... interface{}) | echo |
Pvar_dump(a ... interface{}) | var_dump |
Pprint(a interface{}) | |
Pstr_repeat(input string , multiplier int) string | str_repeat |
看完了這篇文章,相信你對“Golang實(shí)現(xiàn)PHP常用函數(shù)有哪些”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!