3v4l.org

run code in 300+ PHP versions simultaneously
<?php function object_diff($source, $target) { if (!is_object($source) || !is_object($target) || !($source instanceof $target)) { return null; } $sourceReflection = new ReflectionObject($source); $targetReflection = new ReflectionObject($target); $sourceProperties = array_map(function (ReflectionProperty $property) use ($source) { $property->setAccessible(true); return $property->getValue($source); }, $sourceReflection->getProperties()); $targetProperties = array_map(function (ReflectionProperty $property) use ($target) { $property->setAccessible(true); return $property->getValue($target); }, $targetReflection->getProperties()); return array_diff($sourceProperties, $targetProperties); } class Foo { private $a, $b, $c; public function __construct($a, $b, $c) { $this->a = $a; $this->c = $b; $this->b = $b; } } $foo1 = new Foo('a', 'b', 'c'); $foo2 = new Foo('a', 'b', 'd'); var_dump(object_diff($foo1, $foo2));
Output for git.master, git.master_jit, rfc.property-hooks
array(0) { }

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.16 ms | 401 KiB | 8 Q