wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



maybe_unserialize › WordPress Function

Seit2.0.0
Veraltetn/v
maybe_unserialize ( $data )
Parameter:
  • (string) $data Data that might be unserialized.
    Erforderlich: Ja
Gibt zurück:
  • (mixed) Unserialized data can be any type.
Definiert in:
Codex:

Unserializes data only if it was serialized.



Quellcode

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