php xmlファイルをhtmlに変換


  • test.xml:
    
    
    
    Empire Burlesque
    Bob Dylan
    USA
    Columbia
    10.90
    1985
    
    
  • test.xsl:
    
    
    
    
  • test.php:
    load("test.xsl");
    $xmlDoc = new DOMDocument();
    $xmlDoc->load("test.xml");
    $proc = new XSLTProcessor();
    $proc->importStylesheet($xslDoc);
    echo $proc->transformToXML($xmlDoc);
  • 出力:
    
    
    

    My CD Collection

    Title Artist
    Empire Burlesque Bob Dylan