3v4l.org

run code in 300+ PHP versions simultaneously
<?php function generateProductArray($database) { return array_reduce($database, function ($result, $entry) { [$model, $storage, $color] = array_values($entry); $result[$model][$storage][$color] = ($result[$model][$storage][$color] ?? 0) + 1; return $result; }, []); } // Example data from the database $database = array( array('model' => 'iPhone 14 Pro', 'storage' => '128gb', 'color' => 'Black'), array('model' => 'iPhone 14 Pro', 'storage' => '256gb', 'color' => 'Blue'), array('model' => 'iPhone 14 Pro', 'storage' => '128gb', 'color' => 'Black'), array('model' => 'iPhone 14 Pro', 'storage' => '256gb', 'color' => 'Red'), array('model' => 'iPhone 14 Pro', 'storage' => '256gb', 'color' => 'Red'), ); $resultArray = generateProductArray($database); print_r($resultArray);
Output for git.master_jit, rfc.property-hooks
Array ( [iPhone 14 Pro] => Array ( [128gb] => Array ( [Black] => 2 ) [256gb] => Array ( [Blue] => 1 [Red] => 2 ) ) )
Output for git.master
/bin/php-git-master: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-git-master) /bin/php-git-master: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-git-master)
Process exited with code 1.

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