Show DevBest [PHP] Get page title

Status
Not open for further replies.

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,638
2,393
Ever wondered how forums get the title of a page when you post a link? Well I've made a really small function to get the title of the page for you.

Feel free to use.

PHP:
<?php
function getTitle( $url )
{
	$source = @file_get_contents( $url );
	$title = explode( "<title>", $source );
	$title = explode( "</title>", $title[1] );
	$title = trim( $title[0] );
	return $title;
}
echo getTitle( "http://www.upload2.us" );
echo getTitle( "http://www.mark-eriksson.com" );
echo getTitle( "http://www.devbest.com" );
?>
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,638
2,393
No problem haha. I like making random little scripts :p
 
Status
Not open for further replies.

Users who are viewing this thread

Top