Tagged Questions
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', ...
3
votes
3answers
2k views
PHP: DomElement->getAttribute
How can I take all the attribute of an element? Like on my example below I can only get one at a time, I want to pull out all of the anchor tag's attribute.
$dom = new DOMDocument();
...
2
votes
3answers
350 views
Replace specific <font> tag with <span> using DOM manipulation in PHP
I'm trying to replace all tags with tags using DOMDocument in PHP and almost all my tests passed. I'm sure there are other scenarios I'm forgetting, but for now, I'm missing just one:
ORIGINAL:
...
2
votes
2answers
2k views
PHP DOMDocument replace DOMElement child with HTML string
Using PHP I'm attempting to take an HTML string passed from a WYSIWYG editor and replace the children of an element inside of a preloaded HTML document with the new HTML.
So far I'm loading the ...
1
vote
1answer
194 views
How do I get the line number of a DOMElement?
I'm trying to get the line number of a DOMElement object in PHP - the documentation says DOMElement extends DOMNode which implements the getLineNo() method, however, when I try to use this method I ...
0
votes
2answers
28 views
php DomDocument + directly access xml element
Can anyone advise on the fastest, least resource intensive method by which I can see whether 'Column Name=Error' exists please?
I don't want to parse the document, but simply check if elements ...
0
votes
1answer
78 views
Extended DOMElement object loses it's properties when imported into another document
When importing an extended DOMElement object with specific properties into another DOMDocument than the one it was created with all properties are lost (I guess it doesn't actually copy the no but a ...
0
votes
2answers
1k views
Is there a way to get all of a DOMElement's attributes?
I'm reading some XML with PHP and currently using the DOMDocument class to do so. I need a way to grab the names and values of a tag's (instance of DOMElement) attributes, without knowing beforehand ...