3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = <<<END <table class="behaviourtable table"> <tr> <th>Existing column1</th> <th>Existing column2</th> <th>Existing column3</th> </tr><tr> <td>A</td> <td>B</td> <td>C</td> </tr><tr> <td>D</td> <td>E</td> <td>F</td> </tr><tr> <td class="text-info">G</td> </tr> </table> END; $dom = new DOMDocument();//Loads DOM document $dom->loadHTML($str);//Loads HTML from a previously set variable $xpath = new DOMXPath($dom); $tables = $xpath->query('//table[@class="behaviourtable table"]');//Get only table from HTML $commsTable = ''; foreach ($tables as $table) { $commsTable .= $dom->saveXML($table); } $commsHTML = new DOMDocument(); $commsHTML->loadHTML($commsTable); $tr = $commsHTML->getElementsByTagName('tr'); $th = $commsHTML->createElement('th', 'Comment'); $tr->item(0)->appendChild($th); $xpathcomms = new DOMXPath($commsHTML); $comments = $xpathcomms->query('//td[@class="text-info"]'); if($comments->length > 0){ foreach($comments as $comment){ $parent = $comment->parentNode; $parent->previousSibling->appendChild($comment); } } echo $commsHTML->saveHTML();
Output for 8.0.30, 8.1.22 - 8.1.28, 8.2.9 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><table class="behaviourtable table"> <tr> <th>Existing column1</th> <th>Existing column2</th> <th>Existing column3</th> <th>Comment</th></tr><tr> <td>A</td> <td>B</td> <td>C</td> </tr><tr> <td>D</td> <td>E</td> <td>F</td> <td class="text-info">G</td></tr><tr> </tr> </table></body></html>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><table class="behaviourtable table"> <tr> <th>Existing column1</th> <th>Existing column2</th> <th>Existing column3</th> <th>Comment</th></tr><tr> <td>A</td> <td>B</td> <td>C</td> </tr><tr> <td>D</td> <td>E</td> <td>F</td> <td class="text-info">G</td></tr><tr> </tr> </table></body></html>
Output for 5.3.3 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.29, 8.1.0 - 8.1.21, 8.2.0 - 8.2.8
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><table class="behaviourtable table"><tr><th>Existing column1</th> <th>Existing column2</th> <th>Existing column3</th> <th>Comment</th></tr><tr><td>A</td> <td>B</td> <td>C</td> </tr><tr><td>D</td> <td>E</td> <td>F</td> <td class="text-info">G</td></tr><tr> </tr></table></body></html>
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.2
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html><body><table class="behaviourtable table"> <tr> <th>Existing column1</th> <th>Existing column2</th> <th>Existing column3</th> <th>Comment</th> </tr> <tr> <td>A</td> <td>B</td> <td>C</td> </tr> <tr> <td>D</td> <td>E</td> <td>F</td> <td class="text-info">G</td> </tr> <tr> </tr> </table></body></html>
Output for 4.4.3 - 4.4.9
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/FZkNE on line 38
Process exited with code 255.
Output for 4.4.2
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/FZkNE on line 39
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_OBJECT_OPERATOR in /in/FZkNE on line 38
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/FZkNE on line 38
Process exited with code 255.

preferences:
355.27 ms | 401 KiB | 466 Q