3v4l.org

run code in 300+ PHP versions simultaneously
<?php class SomeEntity { private $id; public function __construct($id) { $this->id = $id; } } $entityA = new SomeEntity(1); $entityB = new SomeEntity(1); var_dump(($entityA == $entityB), ($entityA === $entityB));

preferences:
29.92 ms | 402 KiB | 5 Q