Map XML namespace to string.
$pindexishrequired
$narrayrequired
'xmlns="{url}"' or 'xmlns:{namespace}="{url}"'public static function map_xmlns($p, $n) {
$xd = "xmlns";
if( 0 < strlen($n[0]) ) {
$xd .= ":{$n[0]}";
}
return "{$xd}=\"{$n[1]}\"";
}
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/atomparser/map_xmlns