Structure of a Serialized PHP string(序列化 PHP 字符串的结构)
问题描述
我想知道是否有人可以将我指向一个记录了序列化 php 字符串详细信息的资源.我基本上想知道格式/结构,以便我可以在 VB.NET 中编写一个函数来序列化/反序列化它.
I was wondering if anyone could point me to a resource where the details of a serialized php string is documented. I would basically like to know the format/structure so I can write a function in VB.NET to serialize/deserialize it back.
谢谢!
推荐答案
基本结构如下:
标量类型:
布尔值序列化为:
Booleans are serialized as:
b:<i>;
其中 是一个整数,其值为
0
(假)或 1
(真).
where <i>
is an integer with a value of either 0
(false) or 1
(true).
整数序列化为:
i:<i>;
其中 是整数值.
浮点数被序列化为(d
表示双精度):
Floats are serialized as (with d
meaning double):
d:<f>;
其中
是浮点值.
字符串被序列化为:
s:<i>:"<s>";
其中是表示
的字符串长度的整数,
是字符串价值.
where <i>
is an integer representing the string length of <s>
, and <s>
is the string value.
特殊类型:
null
简单地序列化为:
N;
化合物类型:
数组被序列化为:
Arrays are serialized as:
a:<i>:{<elements>}
其中 是一个整数,表示数组中元素的数量,
零个或多个序列化的键值对:
where <i>
is an integer representing the number of elements in the array, and <elements>
zero or more serialized key value pairs:
<key><value>
其中
表示序列化的标量类型,
表示任何可序列化的值.
where <key>
represents a serialized scalar type, and <value>
any value that is serializable.
对象被序列化为:
O:<i>:"<s>":<i>:{<properties>}
其中第一个是一个整数,表示
的字符串长度,
是完全限定的类名(类名前面带有完整的命名空间).第二个 是一个整数,表示对象属性的数量.
是零个或多个序列化的名称值对:
where the first <i>
is an integer representing the string length of <s>
, and <s>
is the fully qualified class name (class name prepended with full namespace). The second <i>
is an integer representing the number of object properties. <properties>
are zero or more serialized name value pairs:
<name><value>
其中
是表示属性名称的序列化字符串,
是任何可序列化的值.
where <name>
is a serialized string representing the property name, and <value>
any value that is serializable.
有一个问题:
There's a catch with <name>
though:
表示为
s:<i>:"<s>";
其中是一个整数,表示
的字符串长度.但是
的值因属性的可见性而异:
where <i>
is an integer representing the string length of <s>
. But the values of <s>
differs per visibility of properties:
一个.使用 public 属性
是属性的简单名称.
a. With public properties <s>
is the simple name of the property.
B.但是,对于 protected 属性,
是属性的简单名称,前面带有