PHP » GoLang |
login |
register |
about
|
fopenfopenfunc Fopen(filePath string)( *File, error){ file,err := os.open(filePath) if err != nil{ return nil,err } return file,nil } |