wpseek.com
A WordPress-centric search engine for devs and theme authors



is_serialized_string › WordPress Function

Since2.0.5
Deprecatedn/a
is_serialized_string ( $data )
Parameters:
  • (string) $data Serialized data.
    Required: Yes
Returns:
  • (bool) False if not a serialized string, true if it is.
Defined at:
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;
	}
}