maybe_serialize()

maybe_serialize( string|array|object $data ) 如果需要,序列化数据…

maybe_serialize( string|array|object $data )

如果需要,序列化数据。
Serialize data, if needed.

目录锚点:#参数#返回#源码#笔记


参数(Parameters)

参数 类型 必填 说明
$data (string | array | object) 必需 可能被序列化的数据。

返回(Return)

(mixed)标量数据


源码(Source)

/**
 * Serialize data, if needed.
 *
 * @since 2.0.5
 *
 * @param string|array|object $data Data that might be serialized.
 * @return mixed A scalar data
 */
function maybe_serialize( $data ) {
	if ( is_array( $data ) || is_object( $data ) )
		return serialize( $data );

	// Double serialization is required for backward compatibility.
	// See https://core.trac.wordpress.org/ticket/12930
	// Also the world will end. See WP 3.6.1.
	if ( is_serialized( $data, false ) )
		return serialize( $data );

	return $data;
}
更新版本 源码位置 使用 被使用
2.0.5 wp-includes/functions.php:706 10 1 function

笔记(Notes)

基本示例

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册