PHP 和 XSLT 处理器错误行为

发布于 2024-09-03 10:14:22 字数 704 浏览 6 评论 0原文

简单的问题:为什么从 XSL 样式表调用的 PHP 函数只返回传递的最后一个参数:

foo.xsl:

<xsl:template match="/">
    <xsl:value-of select="php:function('date','c')" />
</xsl:template>

PHP:

...  
$xsl = new XSLTProcessor();
$xsl->registerPHPFunctions();
$xsl->importStylesheet($fooStylesheet);
echo $xsl->transformToXML($myXML);

I 获取输出

c

,如果我调用 我只是将 date 作为我的输出。我觉得很奇怪。

版本信息:
PHP 5.3.2
libxslt 版本 1.1.26
libxslt 针对 libxml 版本 2.7.6 编译
EXSLT 已启用
libexslt 版本 1.1.26

Simple question: Why is a PHP function called from an XSL Stylesheet just returning the last argument passed:

foo.xsl:

<xsl:template match="/">
    <xsl:value-of select="php:function('date','c')" />
</xsl:template>

PHP:

...  
$xsl = new XSLTProcessor();
$xsl->registerPHPFunctions();
$xsl->importStylesheet($fooStylesheet);
echo $xsl->transformToXML($myXML);

I Get the output

c

and if I call <xsl:value-of select="php:function('date')" /> I just get date as my output. Seems strange to me.

Version info:
PHP 5.3.2
libxslt Version 1.1.26
libxslt compiled against libxml Version 2.7.6
EXSLT enabled
libexslt Version 1.1.26

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

屋顶上的小猫咪 2024-09-10 10:14:22

您的 根标记中需要 PHP xmlns:

<stylesheet xmlns:php="http://php.net/xsl">

You need the PHP xmlns in your <stylesheet> root tag:

<stylesheet xmlns:php="http://php.net/xsl">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文