3v4l.org

run code in 300+ PHP versions simultaneously
<?php $list = '[["A1","B1","C1","D1","E1"],["A2","B2","C2","D2","E2"],["A3","B3","C3","D3","E3"],["A4","B4","C4","D4","E4"],["A5","B5","C5","D5","E5"]]'; $data = json_decode($list); $maxcols = count($data); $maxrows = count($data[0]); for ($row=0; $row<$maxrows; $row++) { for ($col=0; $col<$maxcols; $col++) { print $data[$col][$row]." "; } print "\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
A1 A2 A3 A4 A5 B1 B2 B3 B4 B5 C1 C2 C3 C4 C5 D1 D2 D3 D4 D5 E1 E2 E3 E4 E5

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:
41.24 ms | 401 KiB | 8 Q