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){ $temp = $oId; $oId = $oId instanceof IdObj?$oId:$oName; $oName = $oName instanceof NameObj?$oName:$temp; $splitName = explode(' - ', $oName->name); $idFromName = $splitName[0]; $id = $oId->id; if($idFromName == $id) return 0; return $idFromName > $id ? 1 : -1; } $missing_objects = array_udiff($idArray, $nameArray, 'custom_diff'); print_r($missing_objects);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined property: IdObj::$name in /in/DPJiL on line 37 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/DPJiL on line 37 Warning: Undefined property: IdObj::$name in /in/DPJiL on line 37 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/DPJiL on line 37 Warning: Undefined property: NameObj::$id in /in/DPJiL on line 40 Warning: Undefined property: IdObj::$name in /in/DPJiL on line 37 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/DPJiL on line 37 Warning: Undefined property: IdObj::$name in /in/DPJiL on line 37 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/DPJiL on line 37 Array ( [1] => IdObj Object ( [id] => 2 ) [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:
42.97 ms | 403 KiB | 8 Q