3v4l.org

run code in 300+ PHP versions simultaneously
<?php class NameObj { public $name; function __construct($name){ $this->name = $name; } } class IdObj{ public $id; function __construct($id){ $this->id = $id; } } $idArray = array( new IdObj(1), new IdObj(2), new IdObj(3) ); $nameArray = array( new NameObj('1 - Object 1 Name'), new NameObj('2 - Object 2 Name') ); function custom_diff($oId, $oName) { $one = $oId instanceof IdObj?$oId->id:explode(' - ', $oId->name)[0]; $two = $oName instanceof NameObj?explode(' - ', $oName->name)[0]:$oName->id; return $one-$two; } $missing_objects = array_udiff($idArray, $nameArray, 'custom_diff'); print_r($missing_objects);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [2] => IdObj Object ( [id] => 3 ) )

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