首頁  >  文章  >  後端開發  >  你知道Golang怎麼封裝PHP常用函數嗎!

你知道Golang怎麼封裝PHP常用函數嗎!

藏色散人
藏色散人轉載
2022-01-21 16:01:402922瀏覽

本文由golang教學專欄跟大家介紹關於Golang怎麼實作PHP常用函數,希望對需要的朋友有幫助!

go-to-php

用Golang封裝PHP常用的函數,為了區分PHP與Go中的函數,go-to-php封裝的函數,都是在對應的PHP函數的前面加上大寫的PPallord函數除外。相關程式碼點擊github(https://github.com/Echo-Mr-Pengw/go-to-php)

安裝

  • 字串相關套件

go get -u github.com/Echo-Mr-Pengw/go-to-php/str

  • 數組相關套件

開發中

.......

字串相關函數

##Pchr(chr#Pecho(#echoPvar_dump(var_dump##Pprint(aPstr_repeat(input#
go-to-php封裝函數 #對應的PHP函數
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{} 轉換全部字符,ord的升級版
ascii int32) string
a ...interface{})
a ...interface{})
interface{})print
string , multiplier int) stringstr_repeat

以上是你知道Golang怎麼封裝PHP常用函數嗎!的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除