I have a question, regarding your question that is too elaborate for a comment field.
How do you want to fit attribute data in that? You'd need a Whory Table™ like
array('html', null, array (
array( 'div' , null , array(
array('ul', array('id'=>'foo'), array(
array('li', null, 'foo' ),
array('li', null, array(
array(null,null, 'bar'),
array('ul', null, array(
array('li', null, 'sub-bar' )
))
))
))
))
))
));
because that is the minimal structure required to accurately represent an HTML dataset programmatically.
I've cheated a bit by eliminating the need for "text-node" elements quite as much, by making the assumption if
array( name, attribute, children )
has a string instead of an array for 'children' then its an implicit text-node,
and that nodes with name == null are dont have tags and are thus also text nodes.
What I think you want is a proper programmatic DOM generation tool, which will parse some existing html into a tree to make your life easier
FWIW, the above structure can be serialised into html rather easily.
function tohtml( $domtree ){
if( is_null($domtree[0]) ){
if( !is_array($domtree[2])){
return htmlentities($domtree[2]);
}
die("text node cant have children!");
}
$html = "<" . $domtree[0];
if( !is_null( $domtree[1] ) )
{
foreach( $domtree[1] as $name=>$value ){
$html .= " " . $name . '="' . htmlentities($value) . '"';
}
}
$html .= ">" ;
if( !is_null($domtree[2]) ){
if( is_array($dometree[2]) ){
foreach( $domtree[2] as $id => $item ){
$html .= tohtml( $item ); # RECURSION
}
}
else {
$html .= htmlentities($domtree[2]);
}
}
$html .= "</" . $domtree[1] . ">";
return $html;
}