1
0
mirror of https://github.com/deuill/go-php.git synced 2024-09-21 08:50:45 +00:00

Added Destroy calls in README example

This commit is contained in:
Alex Palaistras 2015-10-04 19:31:43 +01:00
parent 8a2ce468e2
commit c4f899dcd6

View File

@ -25,6 +25,9 @@ func main() {
context, _ := php.NewContext(os.Stdout) context, _ := php.NewContext(os.Stdout)
context.Exec("index.php") context.Exec("index.php")
context.Destroy()
engine.Destroy()
} }
``` ```