wp_encode_emoji

函数


wp_encode_emoji ( $content )
参数
  • (string)
    $content
    The content to encode.
    Required:
返回值
  • (string) The encoded content.
定义位置
  • wp-includes/formatting.php
    , line 5828
引入
4.2.0
弃用

将emoji字符转换为其对应的HTML实体。

这使我们能够使用utf8字符集在数据库中存储表情符号。

function wp_encode_emoji( $content ) {
	$emoji = _wp_emoji_list( 'partials' );

	foreach ( $emoji as $emojum ) {
		$emoji_char = html_entity_decode( $emojum );
		if ( false !== strpos( $content, $emoji_char ) ) {
			$content = preg_replace( "/$emoji_char/", $emojum, $content );
		}
	}

	return $content;
}