PHP compatible serialization from C/C++

前端 未结 3 1627
隐瞒了意图╮
隐瞒了意图╮ 2021-01-12 19:03

Anyone know of a library that allows data to be serialized in C++ such that it can be deserialized using the default PHP \'unserialize\' function?

3条回答
  •  离开以前
    2021-01-12 19:20

    Since you're probably only serializing data, and not PHP objects, you may find a standardized "common ground" serialization more effective. (JSON is likely the simplest)

提交回复
热议问题