Function Reference: xml_join_atts

Summary

This function has not been documented yet.

Source Code

function xml_join_atts($atts) {
	$a = array();
	foreach ($atts as $k=>$v)
		$a[] = $k.'="'.$v.'"';
	return join(' ', $a);
}