gpt4 book ai didi

php - XSLTProcessor 从字符串而不是文档转换为 xml

转载 作者:行者123 更新时间:2023-12-04 05:13:07 24 4
gpt4 key购买 nike

这是我的问题:我正在尝试使用 XSLTProcessor 将 xml 转换为 html。我已经阅读了它的使用,但我有以下问题 - transformToXML(xml_file) 函数要求 xml_file 是一个实际的 xml 文件。 transformToXML 函数是否可以使用字符串而不是文件?我试过在网上搜索这个,但我得到的只是我已经使用 xml 文件看到的东西。由于我需要大规模使用此转换(对许多用户进行大量不同的转换),因此我无法在服务器上使用文件。这是我的代码,所以也许您可以获得更好的图片:

$productxml=  GetShoppingItem($params);

$file = 'ProductQr.xml';
file_put_contents($file, $productxml);

$xml = new DOMDocument();
$xml->load('ProductQr.xml');

$XSL = new DOMDocument();
$XSL->load('XSLTForProduct.xsl');

$xslt = new XSLTProcessor();
$xslt->importStylesheet($XSL);

$html = $xslt->transformToXML( $xml );
return $html;

如您所见,我在这里获取 $productxml 字符串并将其写入 ProductQr.xml,以便稍后在此处使用它:transformToXML($xml)。但是会有很多转换,我不能使用一个xml文件,因为有很多不同的产品。理想情况下,我会使用:
$html = $xslt->transformToXML($productxml);

无需写入 xml 文件,但 transformToXML 需要一个文件而不是字符串。有什么想法吗?

最佳答案

您可以使用 loadXML而不是 load从字符串解析 XML。

关于php - XSLTProcessor 从字符串而不是文档转换为 xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14645747/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com