php2go icon indicating copy to clipboard operation
php2go copied to clipboard

Use Golang to implement PHP's common built-in functions.

Results 4 php2go issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/23472375/97516962-41ee6800-19cf-11eb-93e1-9e1ced2ef978.png) ![image](https://user-images.githubusercontent.com/23472375/97516975-46b31c00-19cf-11eb-9768-a35f84b8f7e3.png)

package main import ( "fmt" "strconv" ) // Hex2bin hex2bin() func Hex2bin(data string) (string, error) { i, err := strconv.ParseInt(data, 16, 0) if err != nil { return "", err...