## [用Go语言实现PHP内置函数](https://openset.github.io/php2go/)
这是一个用Go语言开发的辅助库,尤其适用于熟悉PHP内置函数的开发者,将会实现PHP内置函数。
### 下载安装
```bash
go get github.com/openset/php2go/php
```
### 关于命名
PHP下划线命名改为大驼峰命名。
### Example:
```go
package main
import (
"github.com/openset/php2go/php"
)
func main() {
php.Echo("Hello ", "world!\n")
}
```
[More](https://github.com/openset/php2go/blob/master/main.go)
### 贡献代码
这是一个开源项目,期待你的加入。
## Contributors
[Your contributions are always welcome!](https://github.com/openset/php2go/graphs/contributors)
## LICENSE
Released under [MIT](https://github.com/openset/php2go/blob/master/LICENSE) LICENSE
** [项目地址: \[https://github.com/openset/php2go\]](https://github.com/openset/php2go)**
**[\[阅读原文\]](https://openset.github.io/php2go/)**
你提交的我已经合并。
以下问题需注意:
Pr需要你在GitHub发起,而不只是把代码提交到你Fork 后版本库。
提交代码注意本地git config user.email 配置,最好是GitHub账号邮箱。
每次修改一处提交一次,可以发起多个Pr。
#21
更多评论
<a href="/user/polaris" title="@polaris">@polaris</a> Test是有必要的,Benchmark后期在做。
#2