Title eines Links auslesen

Probier es mal so:

PHP:
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );

$lines = file_get_contents( 'http://www.google.de' );

if( preg_match( '#<title>(.*)</title>#', $lines, $matches ) )
{
	array_shift( $matches );
	var_dump( $matches );
}

Natürlich muss auch für file_get_contents allow_url_fopen aktiviert sein.
 
Zurück