3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = (object) array();$b = (object) array();function object_handle($obj){ static $mask = 0; if (!$mask) { $obj = (object) array(); $mask = hexdec(substr(spl_object_hash($obj), 0, 16)); foreach (debug_backtrace(PHP_VERSION_ID >= 50400 ? DEBUG_BACKTRACE_IGNORE_ARGS : false) as $frame) { if (isset($frame['function'][0]) && !isset($frame['class']) && 'o' === $frame['function'][0] && in_array($frame['function'], array('ob_clean','ob_end_clean','ob_flush','ob_end_flush','ob_get_contents','ob_get_flush'), true)) { $frame = false; break; } } if ($frame) { ob_start(); debug_zval_dump($obj); $mask ^= substr(ob_get_clean(), 17); } } return hexdec(substr(spl_object_hash($obj), 0, 16)) ^ $mask;}ob_start('abc');ob_end_flush();$o = [];echo object_handle($o[]=(object) array()), "\n";echo object_handle($o[]=(object) array()), "\n";echo object_handle($o[]=(object) array()), "\n";echo object_handle($o[]=(object) array()), "\n";echo object_handle($o[]=(object) array()), "\n";echo object_handle($o[]=(object) array()), "\n";echo object_handle($o[]=(object) array()), "\n";echo object_handle($b), "\n";echo object_handle($a), "\n";

preferences:
27.76 ms | 402 KiB | 5 Q