一文让PHP反序列化从入门到进阶
# PHP反序列化从入门到进阶
## 序列化与反序列化基础
### 序列化
序列化是将对象转换为字符串的过程,使用`serialize()`函数实现:
```php
class test {
public $name = "ghtwf01";
public $age = "18";
}
$a = new test();
echo serialize($a);
// 输出: O:4:"test":2:{s:4:"name";s:7:"ghtwf01";s:3:"age";s
2025-08-25 12:59:51
0