maybe_unserialize

Definition:
function maybe_unserialize( $original ) {}

Unserialize value only if it was serialized.

Parameters

  • string $original: Maybe unserialized original, if is needed.

Return values

returns:Unserialized data can be any type.

Source code

function maybe_unserialize( $original ) {

	if ( is_serialized( $original ) ) // don't attempt to unserialize data that wasn't serialized going in

		return @unserialize( $original );

	return $original;

}

2339

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: