3v4l.org

run code in 300+ PHP versions simultaneously
<?php $products = [[12,11,10], [16,15,14], [600,103,20]]; echo 'First column' . PHP_EOL; echo implode(PHP_EOL, array_column($products, 0)); echo PHP_EOL . 'Second column' . PHP_EOL;; echo implode(PHP_EOL, array_column($products, 1)); echo PHP_EOL . 'Third column' . PHP_EOL;; echo implode(PHP_EOL, array_column($products, 2));
Output for git.master, git.master_jit, rfc.property-hooks
First column 12 16 600 Second column 11 15 103 Third column 10 14 20

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:
27.02 ms | 405 KiB | 5 Q