3v4l.org

run code in 300+ PHP versions simultaneously
<?php $log = (object)[ 'category' => [ (object)['category_name' => 'example1'], (object)['category_name' => 'example2'], (object)['category_name' => 'example3'], ] ]; ?> <td class="<?php echo empty($log->category) ? 'noactioncell ' : ''; ?>text-center align-middle"> <?php echo implode('<br/>', array_column($log->category ?? [], 'category_name')); ?> </td> ---- <?php unset($log); ?> <td class="<?php echo empty($log->category) ? 'noactioncell ' : ''; ?>text-center align-middle"> <?php echo implode('<br/>', array_column($log->category ?? [], 'category_name')); ?> </td>
Output for git.master, git.master_jit, rfc.property-hooks
<td class="text-center align-middle"> example1<br/>example2<br/>example3</td> ---- <td class="noactioncell text-center align-middle"> </td>

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
26.77 ms | 405 KiB | 5 Q