foreach结果检查

时间:2011-09-10 11:10:26

标签: php validation function foreach

我的脚本每次都会发布人员帖子和短15地址:

$err_msg = isValidFLR($flr_post, $ip);
    if (!$err_msg) {
    list($randlink, $lastid, $scr) = addLink($flr_post, $ip);
      $flr_post = check_input($flr_post);
      $url_array[$i]['number'] = $i + 1;
      $url_array[$i]['flr'] = $flr_post;
      $url_array[$i]['flr_substr'] = (strlen($flr_post) > 33) ? substr($flr_post, 0, 33) . '...' : $flr_post;
      $url_array[$i]['randlink'] = $randlink;
      $url_array[$i]['fullrand'] = $config['indexurl'] . $config['mod_rewrite_char'] . $randlink;
      $url_array[$i]['scr'] = $scr;
      $url_array[$i]['id'] = $lastid;
      $url_array[$i]['flr_length'] = strlen($flr_post);
      $url_array[$i++]['randlink_length'] = strlen($config['indexurl'] . $config['mod_rewrite_char'] . $randlink);
        } else {
        die('Error, omg');
         }

function isValidFLR检查地址主机名,preg_match(如果是url),如果它不在阻止列表中。

问题是,如果用户发布这样的帖子(每行一个地址):

google.com
google.net
ksajdkljaskldjalsd.com

脚本返回表示所有地址都错了。如果用户尝试只发布一个,那么所有好的,有效的地址脚本都能很好地工作。

因此,此脚本或URL验证检查的问题可能是?

你的建议是什么?

编辑:

function isValidFLR(&$flr_post,&$ip) {
preg_match_all("!://!",$flr_post,$matches);
  $match_count = count($matches[0]);
  if ($match_count>=2) {
    $flr_post = preg_replace("!(.+)://((.+)://(.+))!",'\2',$flr_post);
  }
  elseif ($match_count==0) $flr_post = 'http://'.$flr_post;
  if (!preg_match('!^(http|https|ftp)://[\w-]+\.[\w-]+(\S+)?$!i', $flr_post)) {
      //if (!preg_match('/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i', $flr)) {
    return 'wromg address: '.$flr_post;
  }
  else {
    $m = parse_url($flr_post);
    $hostname = strtolower($m['host']);
  }

  // is such host..
  if (preg_match('/^\d+\.\d+\.\d+\.\d+/', $hostname)) {
    $ip = $hostname;
  } else {
    $ip = gethostbyname($hostname);
    if ($ip===$hostname) 
    return 'host not found: '.$flr_post;
  }

  // does host not blocked..
  if (in_array($ip,getIPs_array())) {
    return 'host blocked: '.$flr_post;
  }
  return false;
}

1 个答案:

答案 0 :(得分:0)

您应该使用'explode()'分割输入,搜索“\ n”,然后对每一行进行检查。