1. 程式人生 > >golang實現php裡的serialize()和unserialize()序列和反序列方法

golang實現php裡的serialize()和unserialize()序列和反序列方法

Golang 實現 PHP裡的 serialize() 、 unserialize()

安裝


go get -u github.com/techleeone/gophp/serialize

用法

package main

import (
"fmt"

"github.com/techleeone/gophp/serialize"

)

func main() {

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

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

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

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

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

}
```

github地址:https://github.com/techleeone...

原文地址:https://segmentfault.com/a/1190000016818544