is_serialized

函式
is_serialized ( $data, $strict = true )
引數
  • (string) $data Value to check to see if was serialized.
    Required:
  • (bool) $strict Optional. Whether to be strict about the end of the string. Default true.
    Required:
    Default: true
返回值
  • (bool) False if not serialized and true if it was.
定義位置
相關方法
is_serialized_stringmaybe_serializewp_is_site_initializedmaybe_unserializeis_iterable
引入
2.0.5
棄用
-

is_serialized: 這個函式檢查一個變數是否被序列化。如果該變數是序列化的,則返回真,否則返回假。

檢查值是否被序列化。

如果$data不是一個字串,那麼返回值將總是false。序列化的資料總是一個字串。

function is_serialized( $data, $strict = true ) {
	// If it isn't a string, it isn't serialized.
	if ( ! is_string( $data ) ) {
		return false;
	}
	$data = trim( $data );
	if ( 'N;' === $data ) {
		return true;
	}
	if ( strlen( $data ) < 4 ) {
		return false;
	}
	if ( ':' !== $data[1] ) {
		return false;
	}
	if ( $strict ) {
		$lastc = substr( $data, -1 );
		if ( ';' !== $lastc && '}' !== $lastc ) {
			return false;
		}
	} else {
		$semicolon = strpos( $data, ';' );
		$brace     = strpos( $data, '}' );
		// Either ; or } must exist.
		if ( false === $semicolon && false === $brace ) {
			return false;
		}
		// But neither must be in the first X characters.
		if ( false !== $semicolon && $semicolon < 3 ) {
			return false;
		}
		if ( false !== $brace && $brace < 4 ) {
			return false;
		}
	}
	$token = $data[0];
	switch ( $token ) {
		case 's':
			if ( $strict ) {
				if ( '"' !== substr( $data, -2, 1 ) ) {
					return false;
				}
			} elseif ( false === strpos( $data, '"' ) ) {
				return false;
			}
			// Or else fall through.
		case 'a':
		case 'O':
		case 'E':
			return (bool) preg_match( "/^{$token}:[0-9]+:/s", $data );
		case 'b':
		case 'i':
		case 'd':
			$end = $strict ? '$' : '';
			return (bool) preg_match( "/^{$token}:[0-9.E+-]+;$end/", $data );
	}
	return false;
}

常見問題

FAQs
檢視更多 >