Uses
Uses | Description |
---|---|
wp-includes/functions.php: is_serialized() | Check value to find if it was serialized. |
Unserialize data only if it was serialized.
(string) (Required) Data that might be unserialized.
(mixed) Unserialized data can be any type.
Data might need to be serialized
to allow it to be successfully stored and retrieved from a database in a form that PHP can understand.
File: wp-includes/functions.php
function maybe_unserialize( $data ) { if ( is_serialized( $data ) ) { // Don't attempt to unserialize data that wasn't serialized going in. return @unserialize( trim( $data ) ); } return $data; }
Version | Description |
---|---|
2.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/maybe_unserialize