package php // #cgo CFLAGS: -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM // #cgo CFLAGS: -I/usr/include/php/Zend // #cgo LDFLAGS: -ldl -lm -lcurl -lpcre -lssl -lcrypto -lresolv -ledit -lz -lxml2 -lphp // #cgo linux CFLAGS: -D_GNU_SOURCE // #include import "C" // Init - Initialize the engine func Init() { C.php_embed_init(0, nil) } // Exit - Uninitialize the engine func Exit() { C.php_embed_shutdown() }