PHP bindings for the Go programming language (Golang)
Go to file
Alex Palaistras 9d111e7342
Merge pull request #58 from thekid/fix/incompatible-pointer-types
Fix "warning: initialization from incompatible pointer type"
2018-10-01 21:58:57 +01:00
include Bump year to 2017 2017-01-28 17:06:12 +00:00
src Bump year to 2017 2017-01-28 17:06:12 +00:00
.editorconfig Clarify EditorConfig for Markdown files 2015-12-27 00:52:38 +00:00
.gitignore Add Dockerfiles, Makefile for testing against isolated environment 2017-10-06 12:39:05 +01:00
.travis.yml Update PHP versions, allow building static version of PHP in Docker 2018-06-01 14:22:40 +01:00
Dockerfile Fix static compilation for Docker environment 2018-06-04 10:42:52 +01:00
LICENSE Bump year to 2017 2017-01-28 17:06:12 +00:00
Makefile Makefile: Remove extraneous PACKAGE_FORMAT argument 2018-06-04 10:39:10 +01:00
README.md Add support for static builds, switch to PHP 7.x by default 2017-01-28 16:58:59 +00:00
context.c Bump year to 2017 2017-01-28 17:06:12 +00:00
context.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00
context_test.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00
engine.c Use old signature for engine_log_message w/ PHP < 7.1 2018-10-01 20:19:14 +02:00
engine.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00
engine_test.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00
php5.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00
php7-debian.go Fix build tags for PHP5 target 2017-10-06 12:36:47 +01:00
php7-static.go Fix static compilation for Docker environment 2018-06-04 10:42:52 +01:00
php7.go Fix build tags for PHP5 target 2017-10-06 12:36:47 +01:00
receiver.c Bump year to 2017 2017-01-28 17:06:12 +00:00
receiver.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00
receiver_test.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00
value.c Bump year to 2017 2017-01-28 17:06:12 +00:00
value.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00
value_test.go Rename base package from `engine` to `php` 2017-01-28 20:57:39 +00:00

README.md

PHP bindings for Go

API Documentation MIT License

This package implements support for executing PHP scripts, exporting Go variables for use in PHP contexts, attaching Go method receivers as PHP classes and returning PHP variables for use in Go contexts.

Both PHP 5.x and PHP 7.x series are supported.

Building

Building this package requires that you have PHP installed as a library. For most Linux systems, this can usually be found in the php-embed package, or variations thereof.

Once the PHP library is available, the bindings can be compiled with go build and are go get-able.

Note: Building against PHP 5.x requires that the php5 tag is provided, i.e.:

go get -tags php5 github.com/deuill/go-php

This is due to the fact that PHP 7.x is the default build target.

Status

Executing PHP script files as well as inline strings is supported and stable.

Binding Go values as PHP variables is allowed for most base types, and PHP values returned from eval'd strings can be converted and used in Go contexts as interface{} values.

It is possible to attach Go method receivers as PHP classes, with full support for calling expored methods, as well as getting and setting embedded fields (for struct-type method receivers).

Caveats

Be aware that, by default, PHP is not designed to be used in multithreaded environments (which severely restricts the use of these bindings with Goroutines) if not built with ZTS support. However, ZTS support has seen major refactoring between PHP 5 and PHP 7, and as such is currently unsupported by this package.

Currently, it is recommended to either sync use of seperate Contexts between Goroutines, or share a single Context among all running Goroutines.

Roadmap

Currently, the package lacks in several respects:

  • ZTS/multi-threading support. This basically means using Go-PHP in Goroutines is severely limited.
  • Documentation and examples, both package-level and external.
  • Performance. There's no reason to believe Go-PHP suffers from any serious performance issues in particular, but adding benchmarks, especially compared against vanilla PHP, might help.
  • Your feature request here?

These items will be tackled in order of significance (which may not be the order shown above).

Usage

Basic

Executing a script is simple:

package main

import (
    php "github.com/deuill/go-php"
    "os"
)

func main() {
    engine, _ := php.New()

    context, _ := engine.NewContext()
    context.Output = os.Stdout

    context.Exec("index.php")
    engine.Destroy()
}

The above will execute script file index.php located in the current folder and will write any output to the io.Writer assigned to Context.Output (in this case, the standard output).

Binding and returning variables

The following example demonstrates binding a Go variable to the running PHP context, and returning a PHP variable for use in Go:

package main

import (
    "fmt"
    php "github.com/deuill/go-php"
)

func main() {
    engine, _ := php.New()
    context, _ := engine.NewContext()

    var str string = "Hello"
    context.Bind("var", str)

    val, _ := context.Eval("return $var.' World';")
    fmt.Printf("%s", val.Interface())
    // Prints 'Hello World' back to the user.

    engine.Destroy()
}

A string value "Hello" is attached using Context.Bind under a name var (available in PHP as $var). A script is executed inline using Context.Eval, combinding the attached value with a PHP string and returning it to the user.

Finally, the value is returned as an interface{} using Value.Interface() (one could also use Value.String(), though the both are equivalent in this case).

License

All code in this repository is covered by the terms of the MIT License, the full text of which can be found in the LICENSE file.