2

我有一个 XSL 文件。

我有一个名为 XSLTProcessor 的 PHP 文件$bob

我想向我的 xsl 转换发送一些参数。

所以,我把它写在我的 PHP 文件中;例如 :

$bob->setParameter('', 'message', 'hi');

在我的 XSL 文件中,为了获取参数,我编写了以下示例:

<xsl:param name="message" />

如果我想在我的 XSL 中显示这个参数,我会这样做:

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

问题来了。

我必须向我的 XSL 发送未定义数量的参数,但我不知道该怎么做。我尝试了几种解决方案,但它们不相关。例如,我想向我的 XSL 发送 3 条消息,并且我希望我的 XSL 使用它们来生成如下代码:

<messages>
    <message>Hi</message>
    <message>it's bob</message>
    <message>How are you ?</message>
</messages>

你有我的解决方案吗?这将是非常好的。对不起,如果我的英语有错误。谢谢你,祝你有美好的一天。

如被问及,这是我拥有和想要拥有的东西

(以下分开)

这是我的原始 XML 的简化版本,名为 posts.xml :

<posts>
    <post id="post1" >
        <titre>Hey</titre>
        <motscles>
            <motcle>Batman</motcle>
            <motcle>Cats</motcle>
        </motscles>
    </posts>
</posts>

这是我想在 final 中拥有的 XML:

<posts>
    <post id="post1" >
        <titre>Hey</titre>
        <motscles>
            <motcle>Batman</motcle>
            <motcle>Cats</motcle>
        </motscles>
    </posts>
    <post id="post2" >
        <titre>Toto</titre>
        <motscles>
            <motcle>Superman</motcle>
            <motcle>Dogs</motcle>
            <motcle>Cake</motcle>
        </motscles>
    </posts>
</posts>

我通过 HTML 表单获得了帖子的信息(标题,motscles)。所以我的 php 文件获取信息,并将其发送到我的 XSL 文件:

// initialize xml and xsl
$xml = new DOMDocument();
$xml->load('posts.xml');
$xsl = new DOMDocument();
$xsl->load('addpost.xsl');

// Initialize the XSLTProcessor
$addPost  = new XSLTProcessor();
$addPost->importStylesheet($xsl);

// Define parameters
$addPost->setParameter('', 'titre', $_POST['titre']);

// Get the modified xml
$xml = $addPost->transformToDoc($xml);

// Save the modified xml
$xml->save('posts.xml');

这是我的 XSL 的简化版本:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output 
        method="xml"
        indent="yes" 
        encoding="UTF-8"
        />

    <xsl:param name="titre" />
    <xsl:param name="motscles" />

    <xsl:template match="posts" >
        <xsl:copy>

            <xsl:apply-templates select="@*" />
            <xsl:apply-templates select="@*|node()"/>

            <xsl:call-template name="post" />
        </xsl:copy>
    </xsl:template>

    <!-- Template de post -->
    <xsl:template name="post" >
        <post id="{$id}" >
            <titre><xsl:value-of select="$titre" /></titre>
            <motscles>
            </motscles>
        </post>
    </xsl:template>

    <!-- Copier les nodes et attributs récursivement -->
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*" />
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
   </xsl:template>  

</xsl:stylesheet>
4

3 回答 3

2

我只需要一个参数,即一个 XML 文档。我会在调用转换之前创建这个 XML 文档。

与发送单个管道分隔的字符串相比,这具有一些明确的好处

  1. 每个参数都在其自己的元素中,这可以通过 XSLT 中的单独模板进行匹配。

  2. 不需要对管道分隔的字符串进行递归处理,也不需要扩展函数。

  3. 更具可扩展性和可扩展性。

于 2012-11-04T15:42:41.237 回答
1

为您的消息确定一个分隔符(即确保不会出现在消息中的字符),然后传入一个字符串,消息由该字符分隔,例如,如果您选择|pass in $bob->setParameter('', 'message', "Hi|It's Bob|How are you?");,然后在您的 XSLT 代码中与 libxslt 一起使用,例如

<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0"
  xmlns:str="http://exslt.org/strings"  
  exclude-result-prefixes="str">

<xsl:param name="message"/>

<xsl:variable name="msgs-rtf">
  <messages>
    <xsl:for-each select="str:tokenize($message, '|')">
       <message>
         <xsl:value-of select="."/>
       </message>
    </xsl:for-each>
  </messages>
</xsl:variable>

<xsl:template match="/">
  <xsl:copy-of select="$msgs-rtf"/>
</xsl:template>

</xsl:stylesheet>

据我所知,str:tokenizePHP 5 用于 XSLT 的 libxslt 支持扩展功能,因此您应该能够使用它。或者您需要编写一个在 XSLT 本身中进行标记化的模板

于 2012-11-04T13:47:56.903 回答
0

PHP中的连接怎么样?

$bob->setParameter("", "message", "Hi:it's bob:How are you ?");

XSLT 代码中的标记化:

<messages>
<xsl:for-each select="tokenize($message,':')">
<message>
<xsl:value-of select="." />
</message>
</xsl:for-each>
</messages>
于 2012-11-04T13:47:20.870 回答