prep_atom_text_construct

函数


prep_atom_text_construct ( $data )
参数
  • (string)
    $data
    Input string.
    Required:
返回值
  • (array) array(type, value)
定义位置
  • wp-includes/feed.php
    , line 582
引入
2.5.0
弃用

Determines the type of a string of data with the data formatted.

Tell whether the type is text, HTML, or XHTML, per RFC 4287 section 3.1.

In the case of WordPress, text is defined as containing no markup,
XHTML is defined as “well formed”, and HTML as tag soup (i.e., the rest).

Container div tags are added to XHTML values, per section 3.1.1.3.

function prep_atom_text_construct( $data ) {
	if ( strpos( $data, '" );
	}

	$parser = xml_parser_create();
	xml_parse( $parser, '
' . $data . '
', true ); $code = xml_get_error_code( $parser ); xml_parser_free( $parser ); unset( $parser ); if ( ! $code ) { if ( strpos( $data, '$data

“;
return array( ‘xhtml’, $data );
}
}

if ( strpos( $data, ‘]]>’ ) === false ) {
return array( ‘html’, “” );
} else {
return array( ‘html’, htmlspecialchars( $data ) );
}
}

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。