bp_document_unserialize_deep( [type] $var )
Unserializes a variable until reaching a non-serialized value
Description
Parameters
- $var
-
(Required)
Return
(void)
Source
File: bp-document/bp-document-functions.php
2292 2293 2294 2295 2296 2297 2298 | function bp_document_unserialize_deep( $var ) { while ( is_serialized( $var ) ) { $var = @unserialize( $var ); } return $var ; } |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.