Nel $xml ho una stringa in cui c'è un XML:

$xml = simplexml_load_string($xml);
$json = json_encode($xml);
$array = json_decode($json,TRUE);

$risultato = $array["links"]["original"];

Mi esce:

array(xx) "http://nomesito.it/asfsfs.jpg"

Come posso fare per eliminare questo fastidioso "array(xx)"
Nella stringa che mi esce?

Grazie 1000