<?php function reference_hash($object) { return spl_object_hash($object); } function value_hash($object) { return md5(print_r($object, true)); } $point1 = (object) ['x' => 1, 'y' => 2]; $point2 = (object) ['x' => 1, 'y' => 2]; var_dump(reference_hash($point1) === reference_hash($point2)); var_dump(value_hash($point1) === value_hash($point2));
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`