Tagged Questions

DOMDocument refers to a class encapsulating the DOM (Document Object Model). Various languages and technologies use the name DOMDocument for this PHP, COM, C++, ActiveX

learn more… | top users | synonyms

8
votes
1answer
556 views

PHP DOMDocument errors/warnings on html5-tags

I've been attempting to parse HTML5-code so I can set attributes/values within the code, but it seems DOMDocument(PHP5.3) doesn't support tags like <nav> and <section>. Is there any way ...
7
votes
5answers
97 views

XPath query result order

For another question I have created some XML related code that works on my development machine but not on viper codepad where I tested it before adding it to my answer. I could reduce my problem to ...
7
votes
2answers
583 views

PHP: DOMDocument loadHTML returns an error when using HTML5 tags

Such as <section>. Is there anything I can do about this?
6
votes
1answer
399 views

Noob question about DOMDocument in php

Hi I'm just starting reading documentation adn examples about DOM, for crawling and parsing, I'm used to do this with get_content, but it's time to change =D for a new project. I have a div, like ...
6
votes
7answers
1k views

Regex / DOMDocument - match and replace text not in a link

I need to find and replace all text matches in a case insensitive way, unless the text is within an anchor tag - for example: <p>Match this text and replace it</p> <p>Don't <a ...
6
votes
3answers
4k views

PHP DOMDocument - get html source of BODY

I'm using PHP's DOMDocument to parse and normalize user-submitted HTML using the loadHTML method to parse the content then getting a well-formed result via saveHTML: $dom= new DOMDocument(); ...
6
votes
1answer
3k views

DOMElement cloning and appending: 'Wrong Document Error'

There's something I don't fully understand about node cloning with the PHP's DOM api. Here's a sample file that quickly duplicates the issue I'm coming across. $doc = new DOMDocument( '1.0', ...
5
votes
3answers
653 views

DOMDocument saveHTML without HTML wrapper?

I'n the function below, I'm struggling to output the DOMDocument without it appending the xml, html, body and p tag wrappers before the output of the content. The suggested fix... ...
5
votes
2answers
736 views

Why doesn't var_dump work with DomDocument objects, while print($dom->saveHTML()) does?

Why doesn't var_dump work with DomDocument objects, while print($dom->saveHTML()) produces output?
5
votes
2answers
325 views

Is a <head> element always available in the DOM, even if absent in the HTML markup?

Every browser I've observed creates a <head> element that's accessible in the DOM even if there are no explicit <head></head> tags in the document's markup. However, Google ...
5
votes
2answers
2k views

Format XML Document created with PHP - DomDocument

I am trying to format visually how my XML file looks when it is output. Right now if you go here and view the source you will see what the file looks like. The PHP I have that creates the file is: ...
4
votes
1answer
57 views

why does xpath remove html special characters?

why does this $html = '<a href="/browse/product.do?cid=1&amp;vid=1&amp;pid=1" class="productItemName">what is going on here</a>'; $dom = new DOMDocument(); ...
4
votes
1answer
42 views

How to prevent the PHP DomDocument from “fixing” your HTML string

I have been trying to parse webpages by use of the HTML DomObject in order to use them for an application to scan them for SEO quality. However i have run into abit of a problem. For testing purposes ...
4
votes
2answers
227 views

DomDoc/SimpleXML/XSLT: parsing to add auto-incrementing id attributes to each unique element child of an element

I have been troubleshooting this for a while, and I am kind of new to programming. Even when I find an error, it's very difficult to figure out how to correct it. Right now, I am trying to figure ...
4
votes
1answer
312 views

php DomDocument innerText

How would I go about adding text into an XML element? For example: <videoTitle>I want to add text here</videoTitle> I have created the DOMDocument, and begun adding the elements. Here ...
4
votes
2answers
88 views

Handle XML Catalogs by php

I have an XSD (XML Schema) wich contains multiple files. There's a catalog.xml in the root of the system, wich is an XML Catalog. It contains SYSTEM and URI catalog definitions wich are needed to use ...
4
votes
1answer
127 views

Why DomDocument getElementsByTagName give back an half NodeList?

I generate some non-standard-tag HTML with DomDocument and the result is this: /* Input HTML <div id="toobar_top"> <widget id="flag_holder"></widget> <widget ...
4
votes
1answer
248 views

How can I remove all child elements of body element with DOMDocument?

I'm trying to remove all body children with DOMDocument. $dom = new DomDocument(); $dom->loadHTML($buffer); $dom->preserveWhiteSpace = FALSE; $body = ...
4
votes
1answer
109 views

Find h3 and h4 tags beneath it

This is my HTML: <h3>test 1</h3> <p>blah</p> <h4>subheading 1</h4> <p>blah</p> <h4>subheading 2</h4> <h3>test 2</h3> ...
4
votes
2answers
198 views

Is there a way to keep entities intact while parsing html with DomDocument?

I have this function to ensure every img tag has absolute URL: function absoluteSrc($html, $encoding = 'utf-8') { $dom = new DOMDocument(); // Workaround to use proper encoding $prehtml ...
4
votes
3answers
489 views

php: using DomDocument whenever I try to write UTF-8 it writes the hexadecimal notation of it

When I try to write UTF-8 Strings into an XML file using DomDocument it actually writes the hexadecimal notation of the string instead of the string itself. for example: ...
4
votes
3answers
584 views

PHP parsing invalid html

i'm trying to parse some html that is not on my server $dom = new DOMDocument(); $dom->loadHTMLfile("http://www.some-site.org/page.aspx"); echo ...
4
votes
2answers
673 views

Enumerate registered namespaces of a PHP DOMDocument object

For one of my projects, I'm using the DOMDocument class to load and manipulate XML documents. I'd need to retrieve every namespace used in the document; however, I can't find how I'd do that. The ...
4
votes
1answer
5k views

Parse HTML with PHP's HTML DOMDocument

I was trying to do it with "getElementsByTagName", but it wasn't working, I'm new to using DOMDocument to parse HTML, as I used to use regex until yesterday some kind fokes here told me that ...
4
votes
1answer
109 views

What is the Explanation for DOMDocument's Inconsistent Behavior when Dumping a non-ASCII Character?

I've noticed different "dumping" behaviors when using PHP's DOMDocument's saveXML() and saveHTML() methods. Here is a simple example of dumping the copyright symbol (©). <?$domDoc = new ...
4
votes
2answers
3k views

Disable warnings when loading non-well-formed HTML by DomDocument (PHP)

I need to parse some HTML files, however, they are not well-formed and PHP prints out warnings to. I want to avoid such debugging/warning behavior programatically. Please advise. Thank you! Code: // ...
4
votes
4answers
4k views

Indentation with DOMDocument in PHP

I'm using DOMDocument to generate a new XML file and I would like for the output of the file to be indented nicely so that it's easy to follow for a human reader. For example, when DOMDocument ...
4
votes
5answers
2k views

PHP XML Parsing

Which is the best way to parse an XML file in PHP ? First Using the DOM object //code $dom = new DOMDocument(); $dom->load("xml.xml"); $root = $dom->getElementsByTagName("tag"); ...
3
votes
1answer
52 views

DOMDocument load php file?

I have a php file, with xml headers, that i wish my script to load. $doc = new DOMDocument(); $doc->load( 'xmlscript.php' ); Will not work, only files with *.xml. How can i make it load the ...
3
votes
4answers
56 views

PHP-code blocks in templates loaded in DOMDocument

I need to parse HTML-template with DOMDocument. But HTML code may contain PHP-code blocks, for example: <div id="test" data="<?php echo $somevar?>"> </div> When I load this HTML I ...
3
votes
4answers
78 views

PHP - Parsing pure text in an HTML string

I have an HTML string and I'd like to make some text formatting on its pure text content. I mean, I'd like to extract anything that is a text and not included into the tag braces. But... I've planned ...
3
votes
1answer
63 views

PHP replaceChild for each parentNode

I'm using this PHP code to replace a series of nodes in an XML file: <?php $xml = " <products> <product> <ItemId>531670</ItemId> <modelNumber>METRA ELECTRONICS/MOBILE ...
3
votes
1answer
34 views

xml insertion at specific point of xml file

I want to insert the following line into my xml file: <?xml-stylesheet type="text/xsl" href="http://example.com/livesearch.xsl"?> immediately after: <?xml version="1.0" encoding="UTF-8" ...
3
votes
3answers
103 views

How do I get the src attribute of img tags?

I load the DOM by an external url as such: $dom = new DOMDocument; $dom->loadHTMLFile( "external_url.html" ); $arrayOfSources = array(); foreach( $dom->getElementsByTagName( "img" ) as $image ...
3
votes
4answers
212 views

PHP htmlentities() without converting html tags

I've found a few posts which refer to the problem, but none of them fully resolve it. I need the function which will output the content converting all special characters in the way the htmlentities() ...
3
votes
1answer
216 views

Read a namespaced attribute from a SimpleXmlElement (imported from XMLReader)

I'm trying to read a large xml file (about 40 MB), and use this data for update the db of my application. It seems i've found a good compromise in terms of elapsed time/memory using XMLReader and ...
3
votes
1answer
155 views

How to query graphml using php, DomDocument and DomXPath?

Does someone know how to query a graphml document with php, DomDocument and DomXpath? My query seems to be correct. e.g. //graphml/graph/node $dom = new DomDocument(); $dom->load("doc.graphml"); ...
3
votes
3answers
282 views

Why am I not getting back any images here?

$url = 'http://www.w3schools.com/js/js_loop_for.asp'; $html = @file_get_contents($url); $doc = new DOMDocument(); @$doc->loadHTML($html); $xml = @simplexml_import_dom($doc); $images = ...
3
votes
3answers
76 views

Why am I getting an array of SimpleXMLElement Objects here?

I have some code that pulls HTML from an external source: $doc = new DOMDocument(); @$doc->loadHTML($html); $xml = @simplexml_import_dom($doc); // just to make xpath more simple $images = ...
3
votes
1answer
239 views

php DOMDocument adds <html> headers with DOCTYPE declaration

I'm adding a #b hash to each link via the DOMDocument class. $dom = new DOMDocument(); $dom->loadHTML($output); $a_tags = $dom->getElementsByTagName('a'); ...
3
votes
2answers
106 views

PHP DomDocument behaving differently in CLI and Web Browser

I 'm using the following code: $doc = new DOMDocument(); $doc->loadHTML("<i><p><strong>From: fsong | #001</strong><br/>I hate you DomDocument ...
3
votes
3answers
195 views

php DomDocument adds extra tags

I'm trying to parse a document and get all the image tags and change the source for something different. $domDocument = new DOMDocument(); $domDocument->loadHTML($text); ...
3
votes
5answers
3k views

How do I remove namespaces from xml, using java dom?

I have the following code DocumentBuilderFactory dbFactory_ = DocumentBuilderFactory.newInstance(); Document doc_; DocumentBuilder dBuilder = dbFactory_.newDocumentBuilder(); StringReader reader = ...
3
votes
3answers
810 views

How to get Anchor text using DomDocument?

Say I have this html: <a href="http://example.com">Test</a> I parse it using dom document with this code: $dom = new DomDocument(); @$dom->loadHTML($html); $urls = ...
3
votes
4answers
189 views

A question about saving a file in php

I've used the following code to do an XSLT in php: # LOAD XML FILE $XML = new DOMDocument(); $XML = simplexml_load_file("images/upload/source.xml"); # START XSLT $xslt = new XSLTProcessor(); ...
3
votes
1answer
590 views

DOMDocument::validate() problem

I have a big problem with the PHP DOMDocument::validate() who seems to ask the DTD systematically. It is a big problem when I whant to validate, for example, an XHTML document as explained here. As ...
3
votes
1answer
96 views

what is the purpose of DOMDocument->documentURI property?

here is link to documentation: http://php.net/manual/en/class.domdocument.php#domdocument.props.documenturi But I do not understand is this setting a value that this object reveal, or is this setting ...
3
votes
2answers
151 views

Searching an HTML document in PHP

I'm trying to use DOMDocument and XPath to search an HTML document using PHP. I want to search by a number such as '022222', and it should return the value of the corresponding h2 tag. Any thoughts on ...
3
votes
2answers
757 views

Bulletproofing SimpleXMLElement

Everyone knows that we should always use DOM techniques instead of regexes to extract content from HTML, but I get the feeling that I can never trust the SimpleXML extension or similar ones. I'm ...
3
votes
2answers
2k views

PHP DOMDocument getElementsByTagname?

This is driving me bonkers... I just want to add another img node. $xml = <<<XML <?xml version="1.0" encoding="UTF-8"?> <gallery> <album tnPath="tn/" lgPath="imm/" ...

1 2 3 4 5 10