Heim  >  Artikel  >  Backend-Entwicklung  >  php中关于“红点”的有关问题。

php中关于“红点”的有关问题。

WBOY
WBOYOriginal
2016-06-13 13:34:42835Durchsuche

php中关于“红点”的问题。。。
为什么下面的红点必须叫上才能显示出$arr[2][$id]中的内容呢?很困惑
 include_once("conn.php");

  if($_GET[id]   $con=file_get_contents("http://it.sohu.com/7/1002/17/column203661721_32".$_GET[id].".shtml");
  $preg = "#

·(.*)#iUs";
  preg_match_all($preg,$con,$arr);
  foreach($arr[1] as $id=>$v){
------------------------

$sql="INSERT INTO `tmp_url` (`id`, `title`, `url`) VALUES (NULL, '".$arr[2][$id]
."', '".$v."');";
 
---------------------

mysql_query($sql);

  
  }
  $_GET[id]++;
  echo "<script>location.href='ls.php?id=".$_GET[id]."'</script>";
  }
?>



------解决方案--------------------
探讨
为什么下面的红点必须叫上才能显示出$arr[2][$id]中的内容呢?很困惑
include_once("conn.php");

if($_GET[id] $con=file_get_contents("http://it.sohu.com/7/1002/17/column203661721_32".$_GET[id].".shtml");
$p……

------解决方案--------------------
这红点等于是字符串连接符
------解决方案--------------------
红点把字符串连接了,$sum = "abc"."ef";
则$sum = "abcdef";
------解决方案--------------------
$sql="INSERT INTO `tmp_url` (`id`, `title`, `url`) VALUES (NULL, '{$arr[2][$id]}', '".$v."');";

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn