<?php

class A {}

$a = new A;
$b = $a;
$c = clone $a;
$d = new A;

var_dump($a, $b, $c, $d);
