wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



is_serialized_string › WordPress Function

Depuis2.0.5
Dépréciéen/a
is_serialized_string ( $data )
Paramètres:
  • (string) $data Serialized data.
    Requis: Oui
Retourne:
  • (bool) False if not a serialized string, true if it is.
Défini(e) dans:
Codex:

Checks whether serialized data is of string type.



Source

function is_serialized_string( $data ) {
	// if it isn't a string, it isn't a serialized string.
	if ( ! is_string( $data ) ) {
		return false;
	}
	$data = trim( $data );
	if ( strlen( $data ) < 4 ) {
		return false;
	} elseif ( ':' !== $data[1] ) {
		return false;
	} elseif ( ! str_ends_with( $data, ';' ) ) {
		return false;
	} elseif ( 's' !== $data[0] ) {
		return false;
	} elseif ( '"' !== substr( $data, -2, 1 ) ) {
		return false;
	} else {
		return true;
	}
}