PHP
·
发表于 5年以前
·
阅读量:8282
在golang里,string与[]byte直接做类型强制转换就好
buf, err := ioutil.ReadFile("file path")
text := string(buf)
text := "Hello, world"
buf := []byte(text)