_oembed_create_xml

函数
_oembed_create_xml ( $data, $node = null )
Access
Private
参数
  • (array) $data The original oEmbed response data.
    Required:
  • (SimpleXMLElement) $node Optional. XML node to append the result to recursively.
    Required:
    Default: null
返回值
  • (string|false) XML string on success, false on error.
定义位置
相关方法
maybe_create_tablewp_oembed_getwp_oembed_register_routeget_embed_templatewp_embed_register_handler
引入
4.4.0
弃用
-

_oembed_create_xml: 此函数用于创建oEmbed响应的XML表示。

从一个给定的数组创建一个XML字符串。

function _oembed_create_xml( $data, $node = null ) {
	if ( ! is_array( $data ) || empty( $data ) ) {
		return false;
	}

	if ( null === $node ) {
		$node = new SimpleXMLElement( '<oembed></oembed>' );
	}

	foreach ( $data as $key => $value ) {
		if ( is_numeric( $key ) ) {
			$key = 'oembed';
		}

		if ( is_array( $value ) ) {
			$item = $node->addChild( $key );
			_oembed_create_xml( $value, $item );
		} else {
			$node->addChild( $key, esc_html( $value ) );
		}
	}

	return $node->asXML();
}

常见问题

FAQs
查看更多 >