0

我正在尝试使用 implode 语句将此数组插入到我的数据库中。但我正在努力寻找我出错的地方:我基本上希望将下面的两个函数转换为返回字符串:

 function Titles($link) {
$str = file_get_contents($link);    
if( strlen( $str )>0 ) {    
    preg_match_all( "/\<title\>(.*)\<\/title\>/", $str, $titles );
    if (count($titles) > 1) {
        return $titles[1];   
    }
}

return '';
}

  function getMetas($link) {
$str1 = file_get_contents($link);    

if (strlen($str1)>0) {
    preg_match_all( '/<meta.*?name=("|\')description("|\').*?content=("|\')(.*?)("|\')/i', $str1, $description);
    if (count($description) > 1) {
        return $description[4];   
    }

}


 }


  $data = array();
  foreach ($links as $link) {
$output = array(
    "title"       => Titles($link), 
  "link"        => $link,
  "description" => getMetas($link),
  "keywords" => getKeywords($link) 
   );
   if (empty($output["description"])) 
   {$output["description"] = getWord($link);
  }
   $data[] = $output;
  }
  print_r($data);  

  mysql_query("INSERT INTO scan (title, url, description, keywords) VALUES ('".implode("'),('",$data)."')");

  if (!mysql_query()) {
echo "woops";
    }

   mysql_close($connect);
4

2 回答 2

1

问题是这$data是一个多维数组,所以在你内爆之后,你的查询中仍然有数组而不是字符串。

您也可以通过implode更早地使用来解决这个问题$output

$data[] = implode(',', $output);

除此之外,您应该mysql_real_escape_string在原始变量上使用,但随着mysql_*函数被弃用,您真的应该切换到 mysqli 或 PDO 中的准备好的语句。

编辑:实际上你需要修改两个内爆:

 $data[] = '"' . implode('","', $output) . '"';
 ...
 mysql_query( "INSERT INTO scan (title, url, description, keywords)
    VALUES (" . implode('),(',$data) . ")" );
于 2012-09-26T17:12:37.060 回答
0

尝试这个

$fields =   array_keys($data);
    $values =   array_values($data);

    $formatedValues =   array();
    foreach($values as $val)
    {   $val    =   "'".addslashes($val)."'";
        $formatedValues[]   =   $val;
    }
      $table="scan";

$sql    =   "INSERT INTO ".$table." (";
    $sql    .=  implode(", ",$fields).") ";
    $sql    .=  "VALUES( ";
    $sql    .=  implode(", ",$formatedValues);
    $sql    .=  ")";
    mysql_query($sql) or die(mysql_error());
于 2012-09-26T17:43:43.973 回答