Crew algemeen |
|
<?php
function imdb ($imdb) {
$f = file_get_contents('http://www.imdb.com/title/'.$imdb.'/');
$cntnt = explode ('<a href="/rg/title-tease/rating-stars/title/'.$imdb.'/ratings">',$f);
$nl = explode('\n', $cntnt);
return '<font color="red"><strong>IMDB Number: </strong></font><a href="http://www.imdb.com/title/'.$imdb.'/" target="_blank">\\1</a> '.$nl[2];
}
$message = preg_replace('#\[imdb=(.*?)\]#si', imdb('\\1'), $message);
$message = preg_replace('#\[imdb\](.*?)\[/imdb\]#si', imdb('\\1'), $message);
?>
<?php function imdb ($imdb) { $cntnt = explode ('<a href="/rg/title-tease/rating-stars/title/'.$imdb.'/ratings">',$f); return '<font color="red"><strong>IMDB Number: </strong></font><a href="http://www.imdb.com/title/'.$imdb.'/" target="_blank">\\1</a> '.$nl[2]; } $message = preg_replace('#\[imdb=(.*?)\]#si', imdb ('\\1'), $message); $message = preg_replace('#\[imdb\](.*?)\[/imdb\]#si', imdb ('\\1'), $message); ?>
In dit stukje zit de fout.
Citaat: Warning: file_get_contents(http://www.imdb.com/title/1/): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request in /usr/home/ie7764/domains/mizone.be/public_html/forum/viewtopic.php on line 1093
Warning: file_get_contents(http://www.imdb.com/title/1/): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request in /usr/home/ie7764/domains/mizone.be/public_html/forum/viewtopic.php on line 1093
r1093 = $f = file_get_contents('http://www.imdb.com/title/'.$imdb.'/');
Overigens werkt het 2de stukje (in dezelfde functie met dezelfde variabele) wel: IMDB Number: tt0377092
Gebruikte script: PHPBB
Greetz,
GDX^
|