3v4l.org

run code in 300+ PHP versions simultaneously
<?php $Template = <<<'TEMPLATE' <table cellSpacing="0" cellpadding="0" id="~~TableIDClass~~" class="ContainerTable"> <thead> <tr class="header"> <td class="TableTitle">~~TableName~~</td> </tr> </thead> <tbody class="~~TableIDClass~~ ClickableTableBody"> ~~TemplateStart~~ <tr data-type="~~Data-Type~~" data-id="~~Data-ID~~" data-date="~~Data-Date~~" data-cost="~~Data-Cost~~" class="TableText clickable AddMee"> <td nowrap class="DateColumn">~~Date~~</td> <td nowrap class="JarColumn"></td> <td nowrap class="CategoryColumn">~~Category~~</td> <td nowrap class="NotesColumn">~~Note~~</td> <td nowrap class="CostColumn">~~DefaultCostDot~~$~~Cost~~</td> </tr> ~~TemplateEnd~~ </tbody> <tfoot> <tr> <td norap colspan="5">$<span class="TableTotal"></span></td> </tr> </tfoot> </table> TEMPLATE; $data = preg_replace('/~~TemplateStart~~[\s\S]+?~~TemplateEnd~~/', '', $Template); var_dump($data);
Output for 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
string(353) "<table cellSpacing="0" cellpadding="0" id="~~TableIDClass~~" class="ContainerTable"> <thead> <tr class="header"> <td class="TableTitle">~~TableName~~</td> </tr> </thead> <tbody class="~~TableIDClass~~ ClickableTableBody"> </tbody> <tfoot> <tr> <td norap colspan="5">$<span class="TableTotal"></span></td> </tr> </tfoot> </table> "
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 string(353) "<table cellSpacing="0" cellpadding="0" id="~~TableIDClass~~" class="ContainerTable"> <thead> <tr class="header"> <td class="TableTitle">~~TableName~~</td> </tr> </thead> <tbody class="~~TableIDClass~~ ClickableTableBody"> </tbody> <tfoot> <tr> <td norap colspan="5">$<span class="TableTotal"></span></td> </tr> </tfoot> </table> "

preferences:
142.97 ms | 402 KiB | 162 Q