3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ar_par = array(array('telos' => 610),array('telos' => 609),array('telos' => 608)); for ($i = 0; $i < count($ar_par); $i++) print_r($ar_par[$i]); print_r(array_column($ar_par, 'telos')); foreach (array_column($ar_par, 'telos') as $telos) { echo "$telos\n"; } echo implode(',', array_column($ar_par, 'telos'));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [telos] => 610 ) Array ( [telos] => 609 ) Array ( [telos] => 608 ) Array ( [0] => 610 [1] => 609 [2] => 608 ) 610 609 608 610,609,608

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