test.xml: <?xml version="1.0" encoding="ISO-8859-1"?>
Empire Burlesque
Bob Dylan
USA
Columbia
10.90
1985
test.xsl: <?xml version="1.0" encoding="ISO-8859-1"?>
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
My CD Collection
Title | Artist |
---|---|
3. test.php:
$xslDoc = new DOMDocument();
$xslDoc->load("test.xsl");
$xmlDoc = new DOMDocument();
$xmlDoc->load("test.xml");
$proc = new XSLTProcessor();
$proc->importStylesheet($xslDoc);
echo $proc->transformToXML($xmlDoc); 4. 輸出:
My CD Collection
Title | Artist |
---|---|
Empire Burlesque | Bob Dylan |