I'm new to phpQuery(http://code.google.com/p/phpquery). I need to achieve the simple task of getting the content of the HTML TITLE tag of a webpage. In this case I'm trying to get the title content of "Yahoo!" that should be "Yahoo!".

I'm doing this with phpQuery, but it is now working

// Testing phpQuery
$result = phpQuery::newDocumentFile($scraps['Scrap_yahoo']->getPage('http://www.yahoo.com','','off'))
            ->find('title');
echo $result->text();

Can someone give me a clue on how to achieve this?

Best Regards,

link|improve this question

60% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I think the problem might be your phpQuery invocation with ::newDocumentFile(). This function needs a filename (not sure if an URL works), but I suspect your ->getPage() actually fetches the file already. If so, then use the normal ::newDocument() like so:

$html = file_get_contents("http://www.yahoo.com/");
$pq = phpQuery::newDocument($html);
print $pq->find("title")->text();

Works for me.

link|improve this answer
Great! It is working. Best Regards, – André Jan 4 '11 at 16:42
feedback

Why not use regular expression?

link|improve this answer
won't work: stackoverflow.com/questions/1732348/… – Jacco Jan 4 '11 at 16:26
I'm using this function, but I need to know how to do it with phpQuery. Function: "function return_between($string, $start, $stop, $type) { $temp = split_string($string, $start, AFTER, $type); return split_string($temp, $stop, BEFORE, $type); }" – André Jan 4 '11 at 16:27
@Jacco "won't work" is not true. Regular Expressions can very much match HTML. For the occasional matching, Regular Expressions are fine. The reason why the use of Regular Expressions is discouraged is because it is incredibly hard to write a reliable all-purpose HTML parser. If you find yourself parsing a lot of HTML, you are better off relying on existing parsers instead of reinventing the wheel. – Gordon Jan 4 '11 at 16:30
This answer should have been a comment though (but then again, you cannot leave comments yet) – Gordon Jan 4 '11 at 16:36
I have used regex to extract stuff from html and have been successfull – Imran Omar Bukhsh Jan 4 '11 at 17:04
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.