Gophp Save

Golang implementation for PHP's functions

Project README

gophp

Build Status

Golang implementation for PHP's functions

Install / Update

go get -u github.com/leeqvip/gophp

Example

package main

import (
	"fmt"

	"github.com/leeqvip/gophp"
)

func main() {

	str := `a:1:{s:3:"php";s:24:"世界上最好的语言";}`

	// unserialize() in php
	out, _ := gophp.Unserialize([]byte(str))

	fmt.Println(out) //map[php:世界上最好的语言]

	// serialize() in php
	jsonbyte, _ := gophp.Serialize(out)

	fmt.Println(string(jsonbyte)) // a:1:{s:3:"php";s:24:"世界上最好的语言";}

}

License

This project is licensed under the MIT license.

Open Source Agenda is not affiliated with "Gophp" Project. README Source: leeqvip/gophp
Stars
74
Open Issues
5
Last Commit
4 months ago
Repository
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating