file_get_contents

file_get_contents

[code=golang]
data, err := ioutil.ReadFile("/tmp/file")
if err==nil {
	fmt.Print(string(data))
}
[/code]