« ASP导出Excel数据使用CheckBox的indeterminate属性的问题 »

asp/php使用Xslt转换Xml

使用ASP处理XSLT转换XML比较简单,思路如下:创建一个XSLTemplate的对象,再创建一个XMLDOM对象,然后在家Xml文件和XSLT文件,最后使用方法transform即可,包含到类里面,具体代码如下。
Class Cls_Xml_Transform
Private lInput,XSLTemplate
Private p_Output
Public Property Get Output()
Output = p_Output
End Property
Private Property Let Output(ByVal strInfo)
p_Output = strInfo
End Property

Public Property Let Input(ByVal vNewValue)
If IsObject(vNewValue) Then Set lInput=vNewValue
End Property

Public Property Let XSLTemplatefile(ByVal vNewValue)
Dim StyleSheet
Dim vNewValue_

vNewValue_ = vNewValue

If Not InStr(vNewValue,":\") > 0 Then
vNewValue = Server.MapPath(vNewValue)
End If

Set XSLTemplate=Server.CreateObject("Msxml2.XSLTemplate")
Set StyleSheet=Server.CreateObject("Microsoft.FreeThreadedXMLDOM")
StyleSheet.load vNewValue
XSLTemplate.StyleSheet=StyleSheet
End Property

Public Sub Transform()
Dim proc
Set proc = XSLTemplate.createProcessor()
proc.input=linput
proc.transform()
Output=proc.output
Set proc=Nothing
End Sub

End Class


使用范例:
Set XMLDOM = Server.CreateObject("Microsoft.FreeThreadedXMLDOM")
XMLDOM.async = false
XMLDOM.load(Server.MapPath("bi2.xml"))
Set o=new Cls_IO_Transform
o.XSLTemplatefile="bi2.xsl"
o.Input=XMLDOM
o.Transform()
response.write o.Output()


这里处理的直接是XmlDom对象了,如果需要,灵活可以修改。


使用PHP处理XSLT解析XML,在PHP5以后的版本中,支持的非常好了。首先要修改你的PHP.INI,让支持DomDocument,xsltprocessor这2个类即可,具体代码如下:
<?php
header("Content-Type: text/html; charset=utf-8");
$xml =new DomDocument;
$xml->load("test.xml");
$xsl =new DomDocument;
$xsl->load("test.xsl");
$proc=new xsltprocessor;
$proc->importStyleSheet($xsl);
/*
//1:输出解析结果

$outdoc = $proc->transformToDoc($xml);
echo $outdoc->saveXML();
*/
//2:解析成HTML
echo $proc->transformToXML($xml);
/*

*/
/*
//3:输出文本
echo trim($proc->transformToDoc($xml)->firstChild->wholeText);
*/
/*
//4:生成文件
*/
$proc->transformToURI($xml, 'test.html');

?>
如上,每种情况对应的每种结果的获取方式。

来自:http://www.5do8.com/

原创文章如转载,请注明:转载自悠悠博客 [ http://www.ajaxstu.com/ ]

相关文章:

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。