golang教學專欄上提供給大家說明Golang#PHP常用函數,並希望於對需要的朋友有所幫助!
# go-to-php(https://github.com/Echo-Mr-Pengw/go-to-php)
用Golang封裝PHP常用的函數,為了區分PHP與Go中的函數,go-to-php封裝的函數,都是在對應的PHP函數的前面加上大寫的P 。
Pallord函數除外。程式碼位址點擊github
安裝
#1.字串相關套件go get -u github. com/Echo-Mr-Pengw/go-to-php/str
#開發中…….
字串相關函數
對應的PHP函數 | |
---|---|
glue string , pieces interface{}) string
| implode|
glue string , pieces interface{}) string
| implode的別名,同Pimplode|
delimiter , str string , limit int) []string
| explode|
str string) int
| strlen|
# string) int | mb_strlen|
str string) string ##lcfirst |
|
string) string ucfirst |
|
string) string #strtoupper |
|
string) string strtolower |
##Pucword( |
ucword |
Ptrim( |
character_mask string) string # trim
|
Pltrim( |
character_mask string) string ltrim
|
#Prtrim( |
character_mask string) string rtrim
|
Pchop( |
character_mask string) string rtrim的別名,同Prtrim
|
Pmd5( |
md5
|
Psha1( |
sha1 |
Pord( |
ord |
Pallord( |
#轉換全部字符,ord的升級版 |
Pchr( |
chr |
Pecho ( |
echo |
#Pvar_dump( |
var_dump |
Pprint( |
print |
# Pstr_repeat( |
multiplier int) string str_repeat
|
|
以上是總結Golang實作PHP常用函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!