tequilarapido / php-serialized
处理 PHP 序列化数据。(例如:搜索和替换)
1.0.2
2014-02-18 17:28 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-09-24 05:00:10 UTC
README
可用于替换 PHP 序列化字符串中的字符串。(查看测试用例)
示例
// Serialized stuff
$user = new stdClass();
$user->email = 'email@example.com';
$serialized = serialize($user);
// Replace mail
$sr = new SearchReplace();
$result = $sr->run('email@example.com', 'email@anotherdomain.com', $serialized);
鸣谢
大部分代码是从网上搜索到的。如果你认为这是你的代码,请告诉我,我会很高兴提及你的贡献。