Notice how Google News has sources on the bottom of each article excerpt.

The Guardian - ABC News - Reuters - Bloomberg

I'm trying to imitate that.

For example, upon submitting the URL http://www.washingtontimes.com/news/2010/dec/3/debt-panel-fails-test-vote/ I want to return The Washington Times

How is this possible with php?

link|improve this question

Google news probably manages a look up table for known domains, and perhaps analyzes the HTML for unknown ones. A lookup table should be trivial to implement, so I've submitted an answer that does the latter. – Matthew Dec 3 '10 at 19:18
You make a good point. – Noob Dec 3 '10 at 19:31
feedback

7 Answers

up vote 3 down vote accepted

My answer is expanding on @AI W answer of using the title of the page, below is the code to accomplish what he said.

<?php

function getTitle($Url){
    $str = file_get_contents($Url);
    if(strlen($str)>0){
        preg_match("/\<title\>(.*)\<\/title\>/",$str,$title);
        return $title[1];
    }
}
//Example:
echo getTitle("http://www.washingtontimes.com/");

?>

OUTPUT

Washington Times - Politics, Breaking News, US and World News

As you can see it is not exactly what google is using, so this leads me to believe that they get a URL's hostname and match it to their own list.

http://www.washingtontimes.com/ => The Washington Times

link|improve this answer
Thanks, the code works but how would you get the same main title if say the link was washingtontimes.com/news/2010/dec/3/… ? I think that's what AI W suggested – Noob Dec 3 '10 at 19:46
You would use parse_url to get the hostname and use getTitle($host); instead. – TecBrat Feb 19 at 21:17
feedback

You could fetch the contents of the URL and do a regular expression search for the content of the title element.

<?php
$urlContents = file_get_contents("http://example.com/");
preg_match("/<title>(.*)<\/title>/i", $urlContents, $matches);

print($matches[1] . "\n"); // "Example Web Page"
?>

Or, if you don't want to use a regular expression (to match something very near the top of the document), you could use a DOMDocument object:

<?php
$urlContents = file_get_contents("http://example.com/");

$dom = new DOMDocument();
@$dom->loadHTML($urlContents);

$title = $dom->getElementsByTagName('title');

print($title->item(0)->nodeValue . "\n"); // "Example Web Page"
?>

I leave it up to you to decide which method you like best.

link|improve this answer
5  
Aaargh! Regexp... for... getting... data... from... HTML – thejh Dec 3 '10 at 19:06
feedback

PHP manual on cURL

<?php

$ch = curl_init("http://www.example.com/");
$fp = fopen("example_homepage.txt", "w");

curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);

curl_exec($ch);
curl_close($ch);
fclose($fp);
?>

PHP manual on Perl regex matching

<?php
$subject = "abcdef";
$pattern = '/^def/';
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
print_r($matches);
?>

And putting those two together:

<?php 
// create curl resource 
$ch = curl_init(); 

// set url 
curl_setopt($ch, CURLOPT_URL, "example.com"); 

//return the transfer as a string 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

// $output contains the output string 
$output = curl_exec($ch); 

$pattern = '/[<]title[>]([^<]*)[<][\/]titl/i';

preg_match($pattern, $output, $matches);

print_r($matches);

// close curl resource to free up system resources 
curl_close($ch);      
?>

I can't promise this example will work since I don't have PHP here, but it should help you get started.

link|improve this answer
1  
A) Curl is overkill. B) Using regular expressions to parse HTML/XML is generally less reliable than using XPath queries or the DOM. – Matthew Dec 3 '10 at 19:24
For traversing a document definitely. However a title tag is simple to extract. Another concern is that XPath is for XML. Assuming that a webpage is well formed XML is a leap of faith, imho. I've only used DOMXPath once and I'm not sure how well it deals with a typical trainwreck of a webpage. – Novikov Dec 3 '10 at 19:31
DOMDocument::loadHTML will do an adequate job of converting HTML into XML, especially for finding a single tag. Using regexp to find something as simple as a title tag isn't even as trivial as you may think. For instance, yours will fail with <title > due to the space. (If the XPath fails, you could always fall back to a regexp.) – Matthew Dec 3 '10 at 19:46
Yes, this is true. '/[<][ ]*title[ ]*[>]([^<]*)/i' Anything that will break that will most likely break any DOM parser that wasn't designed for use in a web browser. – Novikov Dec 3 '10 at 19:49
Hmm.. while CURL works perfectly I agree that I can use something more simplified for retrieving a title. However I also want to avoid webpage errors. I'm in a dilemma.. – Noob Dec 3 '10 at 20:16
feedback
$doc = new DOMDocument();
@$doc->loadHTMLFile('http://www.washingtontimes.com/news/2010/dec/3/debt-panel-fails-test-vote/');
$xpath = new DOMXPath($doc);
echo $xpath->query('//title')->item(0)->nodeValue."\n";

Output:

Debt commission falls short on test vote - Washington Times

Obviously you should also implement basic error handling.

link|improve this answer
+1 for using DOMDOcument. – Pekka May 3 '11 at 13:11
feedback

Using get_meta_tags() from the domain home page, for NYT brings back something which might need truncating but could be useful.

$b = "http://www.washingtontimes.com/news/2010/dec/3/debt-panel-fails-test-vote/" ;

$url = parse_url( $b ) ;

$tags = get_meta_tags( $url['scheme'].'://'.$url['host'] );
var_dump( $tags );

includes the description 'The Washington Times delivers breaking news and commentary on the issues that affect the future of our nation.'

link|improve this answer
Wow that returns a lot. Thanks, wonderful code! :) – Noob Dec 3 '10 at 20:50
feedback

pretty sure google is using the <title> tag of the main page at http://www.washingtontimes.com/ for the entire domain.

link|improve this answer
The title is: "Washington Times - Politics, Breaking News, US and World News," so they definitely aren't using it verbatim. – Matthew Dec 3 '10 at 19:21
Perhaps I can extract anything before - and other symbols following a slogan – Noob Dec 3 '10 at 19:34
feedback

Alternatively you can use Simple Html Dom Parser:

<?php
require_once('simple_html_dom.php');

$html = file_get_html('http://www.washingtontimes.com/news/2010/dec/3/debt-panel-fails-test-vote/');

echo $html->find('title', 0)->innertext . "<br>\n";

echo $html->find('div[class=entry-content]', 0)->innertext;
link|improve this answer
Hmm I never tried HTML dom Parser. It sure looks simpler. Tho I'm not sure if it takes longer to process compared to other methods – Noob Dec 3 '10 at 19:57
@Noob It's much slower than DOMDocument (see here), but it runs without any PHP warning on this page (but I recommend konforce's solution with some error handling). – styu Dec 4 '10 at 11:35
feedback

Your Answer

 
or
required, but never shown

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