Esempio n. 1
0
 function html_attr_merge($attributes1, $attributes2)
 {
     $attr1 = new HTML_Attributes($attributes1);
     $attr2 = new HTML_Attributes($attributes2);
     $class2 = $attr2->getAttribute('class');
     $attr2->removeAttribute('class');
     $attr1->addClass($class2);
     return (string) $attr1->mergeAttributes((string) $attr2);
 }