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', ...
2
votes
3answers
443 views
Extend DOMElement object
How could I extend objects provided with Document Object Model? Seems that there is no way according to this issue.
class Application_Model_XmlSchema extends DOMElement
{
const ELEMENT_NAME = ...
1
vote
2answers
352 views
Not finding elements using getElementsByTagName() using DomDocument
I'm trying to loop through multiple <LineItemInfo> products contained within a <LineItems> within XML I'm parsing to pull product Ids out and send emails and do other actions for each ...
1
vote
1answer
1k views
PHP XML node deletion
i have an XML file with large number of tags. it has more than 2000 tag here and there. i want to delete all that htmlText Tag and save it as a new xml. how cani do that in PHP???
here is the code ...
1
vote
1answer
924 views
How can I change the name of an element in DOM?
In PHP with DOM, I have a DomElement object which represents an <identity/> element.
I have one case where I need to change this so its element name is <person/>, but keep the same child ...
0
votes
2answers
393 views
PHP's DomElement->nodeValue has gobbly-gook
I'm parsing a third-party web page using PHP's DOMElement controls. When I use the web page with my browser and view the source, it's clean, but when I access some of the nodes through the ...
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 ...