Fenixrus,
$f = file_get_contents('document.xml');
$dom = new DOMDocument();
$dom->loadXML($f);
$arr = $dom->getElementsByTagName("t");
$res = array();
foreach ($arr as $a) {
$res[] = $a->nodeValue;
}
#$res = array_unique($res);
print_r($res);