和有什么区别
$table = $doc->createElement('table');
$doc->appendChild($table);
$tr = $doc->createElement('tr');
$table->appendChild( $tr );
$td = $doc->createElement('td');
$tr->appendChild($td);
和
$table = $doc->createElement('table');
$tr = $doc->createElement('tr');
$table->appendChild( $tr );
$td = $doc->createElement('td', 'Competition');
$tr->appendChild($td);
真的有必要拥有第一个附加孩子吗?没有它似乎可以工作,但是当我删除它时,我看不到任何明显的变化。我只是想确认在那种情况下是一样的。
其他单标签呢?
$p1 = $doc->createElement('p', 'test text1');
$p2 = $doc->createElement('p', 'test text1');
是否有必要为每个$p1
and创建一个附加子项$p2
?