maybe_serialize

函数


maybe_serialize ( $data )
参数
  • (string|array|object)
    $data
    Data that might be serialized.
    Required:
返回值
  • (mixed) A scalar data.
定义位置
  • wp-includes/functions.php
    , line 624
引入
2.0.5
弃用

Serializes data, if needed.

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;
}