<?php class Node { public $next; } $first = new Node(); $first->next = $first; $new = new Node(); $new->next = $new; var_dump($first == $new);
You have javascript disabled. You will not be able to edit any code.