AtomParser::map_xmlns( indexish $p, array $n )

Map XML namespace to string.


Description Description


Parameters Parameters

$p

(indexish) (Required) XML Namespace element index

$n

(array) (Required) Two-element array pair. [ 0 => {namespace}, 1 => {url} ]


Top ↑

Return Return

(string) 'xmlns="{url}"' or 'xmlns:{namespace}="{url}"'


Top ↑

Source Source

File: wp-includes/atomlib.php

	public static function map_xmlns($p, $n) {
		$xd = "xmlns";
		if( 0 < strlen($n[0]) ) {
			$xd .= ":{$n[0]}";
		}
		return "{$xd}=\"{$n[1]}\"";
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.