序列化和反序列化涉及的类和函数

时间:2011-04-20 作者:Gandalf

我想知道wordpress安装中处理序列化和非序列化的所有类和函数(单个.php文件)。

1 个回复
最合适的回答,由SO网友:John P Bloch 整理而成

WordPress使用maybe_serialize()maybe_unserialize(). 它们都使用PHP的本机serialize()unserialize() 功能。请参见:

http://phpxref.ftwr.co.uk/wordpress/wp-includes/functions.php.source.html#l1028

http://phpxref.ftwr.co.uk/wordpress/wp-includes/functions.php.source.html#l222

这两个函数都使用该函数is_serialized(), 检查变量是否已序列化。请参见:

http://phpxref.ftwr.co.uk/wordpress/wp-includes/functions.php.source.html#l222

结束

相关推荐

Wp_Options中的临时RSS提要没有自动删除吗?

我刚刚注意到55000个条目(!)在我的wp\\U选项表中。我有一阵子没去那里了。所以我跑了:delete from `wp_options` where `option_name` like \'_transient_timeout_rss%\' delete from `wp_options` where `option_name` like \'_transient_rss_%\' 还有。。。现在返回到645个条目。。。既然transient似乎是永恒的,我怎么能自动删除这些旧的R