wp_specialchars_decode

函数
wp_specialchars_decode ( $string, $quote_style = ENT_NOQUOTES )
参数
  • (string) $string The text which is to be decoded.
    Required:
  • (string|int) $quote_style Optional. Converts double quotes if set to ENT_COMPAT, both single and double if set to ENT_QUOTES or none if set to ENT_NOQUOTES. Also compatible with old _wp_specialchars() values; converting single quotes if set to 'single', double if set to 'double' or both if otherwise set. Default is ENT_NOQUOTES.
    Required:
    Default: ENT_NOQUOTES
返回值
  • (string) The decoded text without HTML entities.
定义位置
相关方法
wp_specialchars_wp_specialcharswp_json_file_decodewp_cache_decrwp_cache_close
引入
2.8.0
弃用
-

wp_specialchars_decode: 这个函数与wp_specialchars相反,它将特殊的HTML实体转换为字符。它接收一个用特殊字符编码的字符串,并对其进行解码,使其可以作为正常字符显示。

将一些HTML实体转换为它们的特殊字符。

特别是处理。`&`, `, `””, 和 `’`.

`$quote_style`可以设置为ENT_COMPAT来解码`””`实体,或者ENT_QUOTES来解码`””`和`’`。默认是ENT_NOQUOTES,不对引号进行解码。

function wp_specialchars_decode( $string, $quote_style = ENT_NOQUOTES ) {
	$string = (string) $string;

	if ( 0 === strlen( $string ) ) {
		return '';
	}

	// Don't bother if there are no entities - saves a lot of processing.
	if ( strpos( $string, '&' ) === false ) {
		return $string;
	}

	// Match the previous behavior of _wp_specialchars() when the $quote_style is not an accepted value.
	if ( empty( $quote_style ) ) {
		$quote_style = ENT_NOQUOTES;
	} elseif ( ! in_array( $quote_style, array( 0, 2, 3, 'single', 'double' ), true ) ) {
		$quote_style = ENT_QUOTES;
	}

	// More complete than get_html_translation_table( HTML_SPECIALCHARS ).
	$single      = array(
		''' => ''',
		''' => ''',
	);
	$single_preg = array(
		'/&#0*39;/'   => ''',
		'/&#x0*27;/i' => ''',
	);
	$double      = array(
		'"' => '"',
		'"' => '"',
		'"' => '"',
	);
	$double_preg = array(
		'/&#0*34;/'   => '"',
		'/&#x0*22;/i' => '"',
	);
	$others      = array(
		'&lt;'   => '<',
		'<' => '<',
		'&gt;'   => '>',
		'>' => '>',
		'&amp;'  => '&',
		'&' => '&',
		'&' => '&',
	);
	$others_preg = array(
		'/&#0*60;/'   => '<',
		'/&#0*62;/'   => '>',
		'/&#0*38;/'   => '&',
		'/&#x0*26;/i' => '&',
	);

	if ( ENT_QUOTES === $quote_style ) {
		$translation      = array_merge( $single, $double, $others );
		$translation_preg = array_merge( $single_preg, $double_preg, $others_preg );
	} elseif ( ENT_COMPAT === $quote_style || 'double' === $quote_style ) {
		$translation      = array_merge( $double, $others );
		$translation_preg = array_merge( $double_preg, $others_preg );
	} elseif ( 'single' === $quote_style ) {
		$translation      = array_merge( $single, $others );
		$translation_preg = array_merge( $single_preg, $others_preg );
	} elseif ( ENT_NOQUOTES === $quote_style ) {
		$translation      = $others;
		$translation_preg = $others_preg;
	}

	// Remove zero padding on numeric entities.
	$string = preg_replace( array_keys( $translation_preg ), array_values( $translation_preg ), $string );

	// Replace characters according to translation table.
	return strtr( $string, $translation );
}

常见问题

FAQs
查看更多 >