程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 在 XSLTProcessor 中 registerPHPFunctions 後無法調用 php 函數解決辦法

在 XSLTProcessor 中 registerPHPFunctions 後無法調用 php 函數解決辦法

編輯:關於PHP編程

XSLT 是一個非常方便的轉換 XML 的工具,PHP 裡面是通過 XSLTProcessor 來實現;XSLT 中內置了許多有用的函數,同時,只需要調用 XSLTProcessor 實例的 registerPHPFunctions 方法,我們就可以在 XSLT 中直接使用 PHP 的函數,這大大增強了 XSLT 的處理能力。

但是,在 XSLT 中使用 PHP 函數時,很多人會遇到如下兩種錯誤:

(1) Warning: XSLTProcessor::transformToXml(): xmlXPathCompiledEval: 1 objects left o
n the stack.
(2)PHP Warning: XSLTProcessor::transformToXml(): xmlXPathCompOpEval: function func
tion bound to undefined prefix php in ….

 代碼如下 復制代碼

<?php
$xml = <<<EOB
<allusers>
 <user>
  <uid>bob</uid>
 </user>
 <user>
  <uid>joe</uid>
 </user>
</allusers>
EOB;
$xsl = <<<EOB
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="utf-8" indent="yes"/>
 <xsl:template match="allusers">
  <html><body>
    <h2>Users</h2>
    <table>
    <xsl:for-each select="user">
      <tr><td>
        <xsl:value-of
             select="php:function('ucfirst',string(uid))"/>
      </td></tr>
    </xsl:for-each>
    </table>
  </body></html>
 </xsl:template>
</xsl:stylesheet>
EOB;
$xmldoc = DOMDocument::loadXML($xml);
$xsldoc = DOMDocument::loadXML($xsl);
 
$proc = new XSLTProcessor();
$proc->registerPHPFunctions();
$proc->importStyleSheet($xsldoc);
echo $proc->transformToXML($xmldoc);
?>

其實,出現這種錯誤,是因為我們沒有定義 PHP namespace ,只需要在

 代碼如下 復制代碼 <xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

中增加 xmlns:php="http://php.net/xsl" 就能解決此問題, 即

 代碼如下 復制代碼

<xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:php="http://php.net/xsl">

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved