3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array1 = array('A', 'B'); $array2 = array('1', '2', '3'); $num = count($array2); //The total number of possible combinations $total = pow(2, $num); $temp = array(); //Loop through each possible combination for ($i = 0; $i < $total; $i++) { //For each combination check if each bit is set for ($j = 0; $j < $num; $j++) { //Is bit $j set in $i? if (pow(2, $j) & $i) $temp[] = $words[$j]; } } print_r($temp);
Output for git.master, git.master_jit
Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on value of type null in /in/lGIRl on line 17 Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => )
Output for rfc.property-hooks
Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Warning: Undefined variable $words in /in/lGIRl on line 17 Warning: Trying to access array offset on null in /in/lGIRl on line 17 Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => )

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:
48.34 ms | 405 KiB | 8 Q