RSS XSL:将RSS种子转换为浏览器可以识别的格式,即XHTML。
转换工作可以在浏览器端完成。
也可以在服务器端完成,此时可以借助PHP5的XSL扩展来完成此任务。
后面附有在服务器端转换的简易代码。
=>Powered by: walkman
[
]
PHP工作代码:
// Load the XML source
$xml = new DOMDocument;
$xml->load('');
$xsl = new DOMDocument;
$xsl->load('rss2html.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
echo $proc->transformToXML($xml);
echo "
© walkman
";
?>
阅读(1353) | 评论(0) | 转发(0) |