質問スマソ

PEARのXML_Tree使って
拡張子がphpのXMLファイル作ったんだが

そこからどうやって読み込めばいいのかわからんorz

$xml = new DOMDocument;
$xml->load('collection.php');

$xsl = new DOMDocument;
$xsl->load('collection.xsl');

$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl);

echo $proc->transformToXML($xml);