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 7823415
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T08:14:21+00:00 2026-06-02T08:14:21+00:00

as stated here the DOMConfiguration is not yet implemented. I need to normalize the

  • 0

as stated here the DOMConfiguration is not yet implemented. I need to normalize the namespaces, so that namespaces in child elements will be moved to the root element as long as prefixes are provided.

Is there any non-regexp way to do this?

Through, I am not sure, if this is even possible by DOMConfiguration but I was not even able to try it as you can see.

Maybe there is a way by setting up the libxml?

Thanks.

  • 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-06-02T08:14:23+00:00Added an answer on June 2, 2026 at 8:14 am

    Well, as commented I have rewritten my code, to take care of namespaces on DOM build-up. This works as follows:

    class Foo {
    
      const XMLNS = 'http://www.w3.org/2000/xmlns/';
    
      /**
       * Register a namespace with an optional prefix to the specified DOMElement.
       *
       * @param DOMElement $element
       * @param string $namespaceUri
       * @param string $prefix
       */
       public static final function registerNS(DOMElement $element, $namespaceUri, $prefix=null) {
         Preconditions::checkNotEmpty($namespaceUri);
         $name = "xmlns";
         if (!empty($prefix)) {
           $name .= ":$prefix";
         }
         $element->setAttributeNS(self::XMLNS, $name, $namespaceUri);
       }
    }
    

    Now, everytime (saying everytime here, to make things easier now) I add an element as a child of another element, I call this method and mostly provide the documentElement as the first parameter to add namespaces to the root element:

    DOMDocument $doc = [...];
    DOMElement $element = [...];
    DOMElement $newChild = [...];
    Foo::registerNS($doc->documentElement, $newChild->namespaceURI, $newChild->prefix);
    $element->appendChild($newChild);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I heard that ASP.net MVC does not maintain View State.So,here is my question I
As stated here , the way evidence is loaded will change in .NET 4.0.
This sounds like a weird title and probably not stated too well. But here's
This started over here when I was getting Class 'Classname_model' not found . I
My disclaimer here is that I started teaching myself C++ about a week ago
The VB6 IDE has a very basic undo and redo mechanism, stated here I
In Bjarne Stroustrup's book The C++ Programming Language, it is stated that a derived
Stated here , one can invoke Jython in source code in Unix platforms. I've
As stated here : http://codeigniter.com/user_guide/general/cli.html A page like : http://www.example.com/myController/myFunc/myParam can be run on
As stated here ( Why is there no 64bit version of Visual Studio 2010?

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.