<?php
class z
{
	function  __toString() { return 'zzzzzzzz'; }
}

$a[(string)new z()]=1;

var_dump($a);