golang 调用php,php-go: PHP绑定golang库,让您快速在go语言里调用php,欢迎star,fork~

干浩阔
2023-12-01

PHP bindings for Go

这个包实现了对执行PHP脚本、导出Go变量以便在PHP上下文中使用、将Go方法接收器附加为PHP类以及返回PHP变量以便在Go上下文中使用的支持。

支持PHP 5.x and PHP 7.x

编译

构建这个包需要将PHP作为库安装。对于大多数Linux系统,这通常可以在“php-embed”包或其变体中找到。

确保PHP库可用,就可以使用“go build”编译绑定,并且可以使用“go get”。

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

go get -tags php5 gitee.com/shirdonl/php-go

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 "gitee.com/shirdonl/php-go"

"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 "gitee.com/shirdonl/php-go"

)

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.

 类似资料: