PHP parse_str equivalent in golang phptuts August 16, 2017 PHP parse_str equivalent in golang is url.ParseQuery Example: package main import ( "fmt" "net/url" ) func main() { m, err := url.ParseQuery("x=1&y=2&y=3") if err != nil { panic(err) } fmt.Println(m) } Result: map[x:[1] y:[2 3]] phptuts
Ubuntu error when build PHP with OpenSSL: expected ‘RSA *’ {aka ‘struct rsa_st *’} but argument is of type ‘const struct rsa_st *’