You appear to be a bot. Output may be restricted
Description
Usage
xml_join_atts( $atts );
Parameters
- $atts
- ( mixed ) required –
Returns
void
Source
File name: wordpress-develop-tests/phpunit/includes/utils.php
Lines:
1 to 8 of 8
function xml_join_atts( $atts ) { $a = array(); foreach ( $atts as $k => $v ) { $a[] = $k . '="' . $v . '"'; } return implode( ' ', $a ); }