gpt4 book ai didi

php - 如何在 xsl 中使用 php 变量?

转载 作者:行者123 更新时间:2023-11-29 04:55:41 25 4
gpt4 key购买 nike

我如何在 XSL 中使用自动递增的 php 变量?

XSL?

function xslt_string($key){
$key++;
return isset($saved[$key]) ? $saved[$key] : '';
}

在 XML 中?

<xsl:variable name="phpstring" 
select="php:function('xslt_string', string('$saved[$key]'))" />
<xsl:value-of select="$post_param" />

XML namespace ?

xmlns:php="/". (function on page that parses XSL)

最佳答案

我是这样做的:

在您的 XSL 中:

<xsl:value-of select="$myVar"/>

在你的 PHP 中:

$proc = new XSLTProcessor();
//...
$proc->setParameter('', 'myVar', 'Your value here');

参见 XSLTProcessor::setParameter了解更多信息。

关于php - 如何在 xsl 中使用 php 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6749353/

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