天天看點

php xml轉化為html,php将xml檔案轉換為html Web程式 - 貪吃蛇學院-專業IT技術平台

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