1

我收到一个错误:

注意:未定义变量:第 17 行 C:\wamp\www\includes\imdbgrabber.php 中的内容

使用此代码时:

<?php
//url
$url = 'http://www.imdb.com/title/tt0367882/';

//get the page content
$imdb_content = get_data($url);

//parse for product name
$name = get_match('/<title>(.*)<\/title>/isU',$imdb_content);
$director = strip_tags(get_match('/<h5[^>]*>Director:<\/h5>(.*)<\/div>/isU',$imdb_content));
$plot = get_match('/<h5[^>]*>Plot:<\/h5>(.*)<\/div>/isU',$imdb_content);
$release_date = get_match('/<h5[^>]*>Release Date:<\/h5>(.*)<\/div>/isU',$imdb_content);
$mpaa = get_match('/<a href="\/mpaa">MPAA<\/a>:<\/h5>(.*)<\/div>/isU',$imdb_content);
$run_time = get_match('/Runtime:<\/h5>(.*)<\/div>/isU',$imdb_content);

//build content


line 17 -->  $content.= '<h2>Film</h2><p>'.$name.'</p>';
    $content.= '<h2>Director</h2><p>'.$director.'</p>';
    $content.= '<h2>Plot</h2><p>'.substr($plot,0,strpos($plot,'<a')).'</p>';
    $content.= '<h2>Release Date</h2><p>'.substr($release_date,0,strpos($release_date,'<a')).'</p>';
    $content.= '<h2>MPAA</h2><p>'.$mpaa.'</p>';
    $content.= '<h2>Run Time</h2><p>'.$run_time.'</p>';
    $content.= '<h2>Full Details</h2><p><a href="'.$url.'" rel="nofollow">'.$url.'</a></p>';

    echo $content;

//gets the match content
function get_match($regex,$content)
{
    preg_match($regex,$content,$matches);
    return $matches[1];
}

//gets the data from a URL
function get_data($url)
{
    $ch = curl_init();
    $timeout = 5;
    curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
    $data = curl_exec($ch);
    curl_close($ch);
    return $data;
}
?>
4

4 回答 4

6

您正在将内容附加到一个不存在的变量。将第 17 行更改为作业:

$content = '<h2>Film</h2><p>'.$name.'</p>';

您还可以将该部分代码更改为以下内容,这会稍微简洁一些:

$content = '<h2>Film</h2><p>'.$name.'</p>'
         . '<h2>Director</h2><p>'.$director.'</p>'
         . '<h2>Plot</h2><p>'.substr($plot,0,strpos($plot,'<a')).'</p>'
      // etc
于 2010-03-23T16:19:21.533 回答
3

$content当变量尚不存在时,您正试图向变量添加一些内容,这自然会触发错误。

尝试用$content.=$content=17 行替换。

于 2010-03-23T16:19:19.657 回答
3

您没有收到错误,您收到通知是因为您尝试将某些内容连接到不存在的变量。从第 17 行删除点.=或放在$content = ''第 17 行之前。

于 2010-03-23T16:20:13.700 回答
1

除了其他人所说的之外,您的代码还有另一个问题需要注意。preg_match在从函数返回值之前,您没有检查返回值get_match。您应该执行以下操作:

if(preg_match($regex,$content,$matches))
  return $matches[1];
else
  // return some default
于 2010-03-23T16:20:10.177 回答