La struttura dell'oggetto $key restituito dal database, che hai fornito nei commenti è:
array(1) { [0]=> object(stdClass)#1743 (1) { ["keyy"]=> string(6) "rKSpxf" } }
Questo è un array con un singolo elemento all'indice 0. Questo elemento è un oggetto con una singola proprietà "keyy".
Pertanto per accedere ai dati ed emetterli, è necessario scrivere:
echo $key[0]->keyy;
Il [0]
fa riferimento al primo indice dell'array e alla ->keyy
fa riferimento alla proprietà "keyy" dell'oggetto in quell'indice.
Per rendere più chiaro cosa sta succedendo, potresti scriverlo a mano in questo modo:
$obj = $key[0]; //get the object out of the array
$prop = $obj->keyy; //get the property out of the object
echo $prop; //output the value of the property