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', ...
5
votes
3answers
334 views
PHP DOM - append source html to a DOMElement
is there a way of appending source html into a DOMElement? Something like this:
$trElement->appendSource("<a href='?select_user=4'>Username</a>");
it would parse that fragment and ...
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
352 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
3answers
113 views
how to handle DOM in PHP
my PHP code
$dom = new DOMDocument();
@$dom->loadHTML($file);
$xpath = new DOMXPath($dom);
$tags = $xpath->query('//div[@class="text"]');
foreach ($tags as $tag) {
echo ...
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 = ...
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
3answers
41 views
Get DOMElement with specific text PHP / XPath
In PHP, i want to get all DOMElement containing a given text.
I get DOMText when $xpath->query("//text()[contains(., 'My String')]"), but which query must i perform for getting DOMElement instead?
...
1
vote
1answer
46 views
Query DOMElement's parent - XPath
I'm using XPath/PHP to parse HTML of a given URL. Let's say I have the desired node in the DOMElement object $element.
How can I perform a query on the parent node of $element?
Appreciate any help.
1
vote
1answer
49 views
Zend_Feed: getting the Image URL from a Feed
What is the correct way to go after items more than one level deep with the Zend_Feed library?
How should the second to last line of code read?
require_once 'Zend/Feed/Rss.php';
$url = ...
1
vote
2answers
114 views
Get Text from a Div with specific ID's using DOM (getElementById help)
I have the following code snippet I'm trying to get the text from:
<span class="article-title1"><div id="user-sub-summary">Love to get text</div></span>
<div ...
1
vote
2answers
80 views
Reason for DOMElement::getAttribute() returning an empty string when there is no such attribute
In the php docs it says:
Return Values
The value of the attribute, or an empty string if no attribute with the given name is found.
Does anybody know the reason for returning an empty ...
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 ...
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
930 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
29 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
0answers
76 views
PHP DOMElement getAttribute Absolute Path URL?
EDIT: To achieve the URL I wanted, you would have to normalize/canonicalize it, as pointed out my Marc. To accomplish this, you can use a class such as the pear class suggested by Marc, or you could ...
0
votes
1answer
79 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
0answers
99 views
Extended DOMElement object changes to another class
I'm currently working on a class to generate a flow chart using SVG. For this I use a number of classes that replace the standard PHP DOM classes.
For the elements in the chart I use a class ...
0
votes
1answer
177 views
PHP DOMElement, replacing text of a node
I have a HTML node like so:
<b>Bold text</b>
A variable $el contains a DOMElement reference to the text of that HTML node ("Bold text"), got from the XPath expression //b/text()
I want ...
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
300 views
OOP - Extending DOMElement in PHP with registerNodeClass
registerNodeClass is great for extending the various DOMNode-based DOM classes in PHP, but I need to go one level deeper.
I've created an extDOMElement that extends DOMElement. This works great with ...
0
votes
1answer
396 views
How do I display a DOMElement?
I'm using readability's code to extract HTML from a web page. How do I display it on a page?
$content = grabArticle($webpage);
echo $content;
ERROR => Object of class DOMElement could not be ...
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 ...
0
votes
2answers
1k views
Is there a better way to change a DOMElement->tagName property in php?
I just ran into this building a Textbox control for my MVC framework, where just before finalizing the whole document I call PreRender on everything that inherits from ServerTag (which in turn ...
-1
votes
1answer
57 views
Digging deeper into DOMElement
I've used Zend_Dom_Query to extract some <tr> elements and I want to now loop through them and do some more. Each <tr> looks like this, so how can I print the title Title 1 and the id of ...