3v4l.org

run code in 300+ PHP versions simultaneously
<?php function combs($arr) { $combs = array_fill(0, count($arr)+1, array()); $cntArr = count($arr); for ($i = 0; $i < $cntArr; ++$i) { for ($j = $cntArr-$i; $j > 0; --$j) { $combs[$j][] = implode(', ', array_slice($arr, $i, $j)); } } return $combs; } $arr = array('a', 'b', 'c', 'd', 'e', 'f'); print_r(combs($arr));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( ) [1] => Array ( [0] => a [1] => b [2] => c [3] => d [4] => e [5] => f ) [2] => Array ( [0] => a, b [1] => b, c [2] => c, d [3] => d, e [4] => e, f ) [3] => Array ( [0] => a, b, c [1] => b, c, d [2] => c, d, e [3] => d, e, f ) [4] => Array ( [0] => a, b, c, d [1] => b, c, d, e [2] => c, d, e, f ) [5] => Array ( [0] => a, b, c, d, e [1] => b, c, d, e, f ) [6] => Array ( [0] => a, b, c, d, e, f ) )

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:
32 ms | 403 KiB | 8 Q