3v4l.org

run code in 300+ PHP versions simultaneously
<?php $names = ['Alice', 'Bob', 'Charlie', 'Alice', 'Dave', 'Alice']; class Name { public $name; public $id; public function __construct($name, $id = 0) { $this->name = $name; $this->id = $id; } } function is_similar($a, $b) { return $a->name == $b->name; } function contains(array $list, $item, callable $comparitor) { foreach ($list as $test) { if ($comparitor) { return true; } } return false; } function partial($func, $arg1) { $func_args = func_get_args(); $args = array_slice($func_args, 1); return function() use($func, $args) { $full_args = array_merge($args, func_get_args()); return call_user_func_array($func, $full_args); }; } // Transform strings -> objects $mappedNames = array_map(function($name) { return new Name($name); }, $names); // Deduplicate list $reduction = function(callable $comparitor, array $carry, $item) { if (contains($carry, $item, $comparitor)) { return $carry; } return array_merge($carry, array($item)); }; $reducedNames = array_reduce($mappedNames, partial($reduction, "is_similar"), []); $idNames = array_map(function($item, $id) { return new Name($item->name, $id); }, $reducedNames, range(1, count($reducedNames))); var_dump($idNames);
Output for git.master, git.master_jit, rfc.property-hooks
array(1) { [0]=> object(Name)#9 (2) { ["name"]=> string(5) "Alice" ["id"]=> int(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:
38.81 ms | 401 KiB | 8 Q