Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 846381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T06:36:15+00:00 2026-05-15T06:36:15+00:00

I have the following PHP code, but it’s not working. I don’t see any

  • 0

I have the following PHP code, but it’s not working. I don’t see any errors, but maybe I’m just blind. I’m running this on PHP 5.3.1.

<?php
$xsl_string = <<<HEREDOC
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
                xmlns="http://www.w3.org/1999/xhtml"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:exsl="http://exslt.org/common"
                extension-element-prefixes="exsl">
  <xsl:template match="/">
    <p>Hello world</p>
    <xsl:variable name="person">
      <firstname>Foo</firstname>
      <lastname>Bar</lastname>
      <email>test@example.com</email>
    </xsl:variable>
    <xsl:value-of select="exsl:node-set(\$person)/email"/>
  </xsl:template>
</xsl:stylesheet>
HEREDOC;

$xml_dom = new DOMDocument("1.0", "utf-8");
$xml_dom->appendChild($xml_dom->createElement("dummy"));

$xsl_dom = new DOMDocument();
$xsl_dom->loadXML($xsl_string);

$xsl_processor = new XSLTProcessor();
$xsl_processor->importStyleSheet($xsl_dom);
echo $xsl_processor->transformToXML($xml_dom);
?>

This code should output “Hello world” followed by “test@example.com”, but the e-mail portion doesn’t appear. Any idea what’s wrong?

-Geoffrey Lee

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T06:36:16+00:00Added an answer on May 15, 2026 at 6:36 am

    The problem is that the provided XSLT code has a default namespace.

    Therefore, the <firstname> , <lastname> and <email> elements are in the xhtml namespace. But email is referenced without any prefix in:

    exsl:node-set($person)/email
    

    XPath considers all unprefixed names to be in “no namespace”. It tries to find a child of exsl:node-set($person) called email that is in “no namespace” and this is unsuccessful, because its email child is in the xhtml namespace. Thus no email node is selected and output.

    Solution:

    This transformation:

    <xsl:stylesheet version="1.0"
      xmlns="http://www.w3.org/1999/xhtml"
      xmlns:x="http://www.w3.org/1999/xhtml"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:exsl="http://exslt.org/common"
      exclude-result-prefixes="exsl x">
      <xsl:output omit-xml-declaration="yes" indent="yes"/>
    
      <xsl:template match="/">
        <html>
         <p>Hello world</p>
         <xsl:variable name="person">
          <firstname>Foo</firstname>
          <lastname>Bar</lastname>
          <email>test@example.com</email>
         </xsl:variable>
         <xsl:text>&#xA;</xsl:text>
         <xsl:value-of select="exsl:node-set($person)/x:email"/>
         <xsl:text>&#xA;</xsl:text>
        </html>
      </xsl:template>
    </xsl:stylesheet>
    

    when applied on any XML document (not used), produces the wanted result:

    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:x="http://www.w3.org/1999/xhtml">
       <p>Hello world</p>
    test@example.com
    </html>
    

    Do note:

    1. The added namespace definition with prefix x

    2. The changed select attribute of <xsl:value-of>:

    exsl:node-set($person)/x:email

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.