Tagged Questions
domxpath is a class in PHP's DOM API to support XPATH 1.0
5
votes
3answers
137 views
How can I remove <br/> if no text comes before or after it? DOMxpath or regex?
How can I remove <br/> if no text comes before or after it?
For instance,
<p><br/>hello</p>
<p>hello<br/></p>
they should be rewritten like this,
...
5
votes
5answers
373 views
unable to scrape content from a website
I am trying to scrap some content from a website but the code below is not working(not showing any output).
here is the code
$url="some url";
$otherHeaders=""; //here i am using some other headers ...
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
2answers
2k views
XPath to get one level of childnodes
Using DOMXPath::query is it possible to get just one level deep of childNodes?
For example if I had a document like:
<div>
<span>
<cite>
</cite>
...
2
votes
2answers
86 views
DOMDocument / Xpath leaking memory during long command line process - any way to deconstruct this class
I've building a command line php scraping app that uses XPath to analyze the HTML - the problem is every time a new DOMXPath class instance gets loaded in a loop I'm getting a memory loss roughly ...
2
votes
2answers
81 views
DOMXPath get sibling depending on previous sibling value
Let's say I have this:
<foo>
<bar>CCC</bar>
<baz>sometexthere</baz>
</foo>
<foo>
<bar>AAA</bar>
<baz>sometext</baz>
...
2
votes
2answers
65 views
How to ignore/continue if TD does not contain an image?
I need to continue; if TD does not contain an image.
I tried this:
if(!$image){continue;}
but that did not work.
<?php
/////////////////////////////////////////////////////////////////////
...
2
votes
2answers
226 views
Remove <p><br/></p> with DOMxpath or regex?
I use DOMxpath to remove html tags that have empty text node but to keep <br/> tags,
$xpath = new DOMXPath($dom);
while(($nodeList = $xpath->query('//*[not(text()) and not(node()) and ...
2
votes
2answers
182 views
DOMXPath $html->query('//p[@class=“myclass”]/a')->item(0); not working
DOMXPath $html->query('//p[@class="myclass"]/a')->item(0); is not working.
Here is the HTML:
<p class="username">
<img src="http://static1.tryal.com/img/b.gif" onclick="lalalaa()" ...
2
votes
1answer
138 views
PHP DOMXPath problem
$xpath = new DOMXpath($doc);
$res = $xpath->query(".//*[@id='post2679883']/tr[2]/td[2]/div[2]");
foreach( $res as $obj ) {
var_dump($obj->nodeValue);
}
I need to take all the items in the ...
2
votes
1answer
422 views
PHP + Wikipedia: Get content from the first paragraph in a Wikipedia article?
I’m trying to use Wikipedia’s API (api.php) to get the content of a Wikipedia article provided by a link (like: http://en.wikipedia.org/wiki/Stackoverflow).
And what I want is to get the first ...
2
votes
1answer
225 views
Ordering DOMXPath query results by node-depth
Given this example document snippet:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:zuq="http://localhost/~/zuqml">
<head></head>
<body>
<zuq:data name="a" />
...
2
votes
2answers
321 views
Get full XPath from partial
I am using selenium with perl and have label on page, to access this label i have following xpath: //*[text()='some here'] , the problem that a need to get full xpath of this element, like ...
2
votes
1answer
232 views
Debugging of object of DomXPath and DomDocument
We use echo or print_r to get value of variables while debugging PHP code.
But, object of domXPath or DomDocument are not captured in echo or print_r.
How to get values from above objects while ...
2
votes
1answer
157 views
DOMXpath | Select the innermost divs
Im looking for a way to select the innermost div with PHP
for example:
<div>
<div>
<div>
-
</div>
</div>
<div>
...
2
votes
1answer
1k views
PHP's DOMXPath is stripping out my tags inside the matched text
I asked this question yesterday, and at the time it was just what I needed, but while working with some live data I discovered that is wasn't quite doing what I expected. ...
2
votes
1answer
735 views
PHP Xpath following-siblings
I'm trying to use xpath to get the contents of a table.
The table looks like this
<div>
<table>
<tr class="tableheader">
<td> Stuff </td>
</tr>
<tr ...
1
vote
2answers
64 views
xpath: extract data from a node using xpath
I want to extract only the sales rank (which in this case is 5)
Amazon Best Sellers Rank: #5 in
Books ( See
Top 100 in Books )
From web page : ...
1
vote
1answer
33 views
DOMXPath union extract with PHP
I'm trying to get img and the div which is coming after the div which contains that img, all in one query.
So I did this:
$nodes = $xpath->query('//div[starts-with(@id, "someid")]/img |
...
1
vote
0answers
41 views
Javascript code for xpath in html [closed]
Possible Duplicate:
How to get xpath with jquery in click
Here I have a some code: http://jsbin.com/uhude3/21/edit but Where is the error. please help. In left side of screen is javascript ...
1
vote
1answer
80 views
Get the width and height of each element's attribute via DOM or XPATH
How can I get the width and height of each element's attribute?
For instance,
$dom = new DOMDocument;
$dom->loadHTML('<div class="item" style="width:295px; height:210px; border:1px solid ...
1
vote
2answers
45 views
How to skip the item in an rss feed if the `description`node does not exist?
How do I skip the item in an rss feed if the description text does not exist?
I tried with this line below but I still get an error,
if($x -> item($i) -> getElementsByTagName('description')) { ...
1
vote
1answer
220 views
PHP DOMXPath query using the innerHTML/nodeValue of an element to find and return the element
Can you please help me with the correct syntax to use when you want to check the innerHTML/nodeValue of an element?
I have no problem with the Name however the Age is within a plain div element, What ...
1
vote
0answers
40 views
DOMDocument xpath query cut off time
is there a way to cut of the query and return back the results.. preset time to take to get all images from the given url .. i.e. query half of the webpage ? or job time not greater than 5 ...
1
vote
2answers
482 views
DOMXpath - Get href attribute and text value of an a element
So I have a HTML string like this:
<td class="name">
<a href="/blah/somename23123">Some Name</a>
</td>
<td class="name">
<a href="/blah/somename28787">Some ...
1
vote
1answer
151 views
PHP XPath. How to return string with html tags?
<?php
libxml_use_internal_errors(true);
$html = '
<html>
<body>
<div>
Message <b>bold</b>, <s>strike</s>
</div>
...
1
vote
1answer
99 views
XML DOMXPath Searching
<?xml version="1.0" encoding="UTF-8"?>
<root>
<channel>
<item>
<category>Cat1</category>
</item>
...
1
vote
1answer
76 views
DOMXPath - query
XML File:
<Domain Domaindetails="This tree display the domain we work">Root element
<Insurance>
<InsuranceQ>
<Devs>4</Devs>
<QA>1</QA>
...
1
vote
1answer
335 views
Correctly deleting child elements in PHP using DOMDocument and DOMXPath
This was previous another question, but we won't talk about that. I am isolating a number of sections in a third party HTML document. When matching some, I need to remove certain tags from the result. ...
1
vote
1answer
89 views
PHP problem with DOM parsing
The code pasted below, works on my PC, but not on my hosting (which have PHP 5.2.13 installed).
$source = file_get_contents('http://example.com/example', 0);
$dom = new DOMDocument;
...
1
vote
2answers
191 views
Xpath php fetch links
I'm using this example to fetch links from a website :
http://www.merchantos.com/makebeta/php/scraping-links-with-php/
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");
...
1
vote
2answers
238 views
Why doesn't DOMXPath work?
I've been trying to write a PHP script to parse an XML document using DOMXPath; however it seems I'm missing something because none of my XPath queries are returning anything. So I've tried to water ...
1
vote
2answers
302 views
can DOMXPath::query be limited to a certain depth?
Is there a way to limit the depth DOMXPath::query will look at?
Consider the following document:
<div>
<span>
<div>
</div>
</span>
</div>
...
0
votes
2answers
18 views
php DOMXpath encoding
I need to scrape some data from webpages. But I have some encoding problems with it.
Here is just a litle sample code to show the problem on a well known german webpage.
I expected to get this text ...
0
votes
0answers
14 views
String operation in pydom Xpath expression
I have following XMl file:
<book_store>
<book number ="1">book1</book>
<book number ="2">book2</book>
<book number ="3">book3 & book4</book>
...
0
votes
1answer
25 views
how to use DOMXPath in C# for web scrapping
Is there any way to use DOMXPath in C# like PHP for web scrapping ?? Or is there any alternative way to do the same ??
0
votes
3answers
54 views
CURL to grab an XML file associated with this URL
I am trying to use CURL to grab an XML file associated with this URL, then i am trying to parse the xml file using DOMxPath.
There are no output errors at this point it is just not displaying ...
0
votes
0answers
35 views
DOMXPath query error , not working in web server
i am using the following code to grab some data from a site and store them in a database .
<?php
error_reporting(0);
include("database.php");
$dom = new DOMDocument();
$url = ...
0
votes
1answer
34 views
Counting the total item in an ATOM feed
I have a problem in counting the total items in this feed,
$xml = ('http://www.huffingtonpost.com/author/index.php?author=simon-cohen');
$xmlDoc = new DOMDocument();
$xmlDoc -> load($xml);
# Get ...
0
votes
1answer
36 views
DOMXPath query error , shows nothing
I am using this code to get some metal name(e.g:copper,aluminium) from this site : http://www.kitcometals.com/ . this names are located at the left side of the page in a table named live spot prices.
...
0
votes
1answer
38 views
DomXPath Selecting
I have a problem with the DomXPath for selecting what I need. I have a structure like
<div id="a">
Something
<nobr> Inside </nobr>
</div>
What I want is to select only ...
0
votes
1answer
40 views
DomXPath query to select links which don't contain “mailto”
I tried to get all the links except ones contains 'mailto'. I have tried millions of different things but nothing seems to work. My best attempt was //a[@href(not(contaıns('maılto')))] but it didn't ...
0
votes
0answers
15 views
What is the reason why my DOMXPath chokes without warnings or errors
Here is my code below.
$dom = new DOMDocument();
$dom->loadHTML($source); // Html String
$xpath = new DOMXPath($dom);
$meta_keywords = ...
0
votes
2answers
121 views
Traversing child nodes with PHP DOMXpath?
I'm having some trouble understanding what exactly is stored in childNodes. Ideally I'd like to do another xquery on each of the child nodes, but can't seem to get it straight. Here's my scenario:
...
0
votes
0answers
24 views
how to get table data using DOMXPath
I want to get Userid,price,quantity and dataOfPurchase data from the following link using DOMXpath .
...
0
votes
2answers
74 views
Php - Dom, Insert HTML_CODE inside nodeValue
$dom= new DOMDocument('1.0', 'iso-8859-1');
$dom->loadHTML(' <html><body> <strong>SECOND</strong> </body></html>');
$path = new DOMXPath($dom);
...
0
votes
2answers
196 views
php DomXPath - how to get image in current node only and not in child nodes?
i need to get only image that in current node and not in child nodes
i want to get only green/yellow/red/black images without not_important.gif image
i can use query './/table/tr/td/img'
but i need it ...
0
votes
1answer
316 views
php DomXPath - how to select child node from parent node of current node?
i have a very important question that seem to be difficult for me ..
simply i need to select child node from parent node of current node !!
i know that we use (..) to select parent node .
but in my ...
0
votes
3answers
263 views
PHP xpath query on XML with default namespace binding
I have one solution to the subject problem, but it’s a hack and I’m wondering if there’s a better way to do this.
Below is a sample XML file and a PHP CLI script that executes an xpath query given as ...
0
votes
3answers
204 views
XPATH not working on the HTML
I have a code that reads an HTML file from my local web server localhost and then converts it to XHTML with tidy. Then i load that XHTML into my DOM. the code looks like this
<?php
function ...