You cannot call the php function after registerPHPFunctions in XSLTProcessor.

Source: Internet
Author: User
XSLT is a very convenient tool for XML conversion. it is implemented through javastprocessor in PHP. XSLT has many built-in useful functions. at the same time, you only need to call the r... XSLT is a very convenient tool for XML conversion. it is implemented through XSLTProcessor in PHP. XSLT has many built-in useful functions. at the same time, you only need to call the registerPHPFunctions method of the XSLTProcessor instance, we can directly use PHP functions in XSLT, which greatly enhances the processing capability of XSLT.

However, when using PHP functions in XSLT, many people encounter the following two errors:

(1), Warning: effectprocessor: transformToXml (): xmlXPathCompiledEval: 1 objects left on the stack.

(2), PHP Warning: effectprocessor: transformToXml (): xmlXPathCompOpEval: function bound to undefined prefix php in ....

     
 
  bob
       
     
  
   joe
     
     EOB;  $xsl = <<
   
     
        Users  
       
   
   
 
EOB; $xmldoc = DOMDocument::loadXML($xml); $xsldoc = DOMDocument::loadXML($xsl); $proc = new XSLTProcessor(); $proc->registerPHPFunctions(); $proc->importStyleSheet($xsldoc); echo $proc->transformToXML($xmldoc);


In fact, this error occurs because we have not defined the PHP namespace.

 

Add xmlns: php = "http://php.net/xsl" to solve this problem, that is

 


Tutorial address:

Reprinted! But please include the article address ^

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.