douhuang75397 2017-10-04 18:42 采纳率: 0%
浏览 87
已采纳

PHP限制foreach循环中的项目

I am trying to limit the number of items within a foreach loop. I am checking a string if it contains a URL, and if so, then check for a JPG extension. Since multiple results are given, I would like to limit those to just 1:

preg_match_all('#\bhttps?://[^,\s()<>]+(?:\([\w\d]+\)|([^,[:punct:]\s]|/))#', $mystring, $match);

  foreach ($match[0] as $link){

     $strpos = strpos($link, '.jpg');
      if ($strpos !== false){
        $i_img = 0;
          foreach ($link as $imageurl){
            if ($i_img == 1) break;
              echo '</br>'.$imageurl;
              $i_img++;
          } // end foreach
       } // end if strpos

  } // end foreach

I get an error "Warning: Invalid argument supplied for foreach()"

  • 写回答

2条回答 默认 最新

  • douzizang7783 2017-10-04 18:54
    关注

    I do not think there is a need for the second foreach loop.

    The following should get you the first found .jpg

    <?php
    
    //Test string
    $mystring = 'https://image.jpg, https://second.jpg';
    
    preg_match_all('#\bhttps?://[^,\s()<>]+(?:\([\w\d]+\)|([^,[:punct:]\s]|/))#', $mystring, $match);
    
    foreach ($match[0] as $link){
       $strpos = strpos($link, '.jpg');
       if ($strpos !== false){
           //do something meaningful here.
           echo $link; //https://image.jpg
           break;   
       }
    }
    

    Hope that helps!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 codelite全屏时file、setting那一行消失了
  • ¥15 gazebo-rviz教程
  • ¥15 付费求做一个自助抢单插件
  • ¥15 bat批处理,关于数据复制问题
  • ¥50 同步两个不同结果的array中某些属性
  • ¥15 悬赏15远程操控解决问题
  • ¥15 CST复制的模型无法单独修改参数?
  • ¥15 前端页面想做个定时任务,但是使用requestAnimationFrame,setinterval和settimeout都不行
  • ¥15 根据以下文字信息,做EA模型图
  • ¥15 删除虚拟显示器驱动 删除所有 Xorg 配置文件 删除显示器缓存文件 重启系统 可是依旧无法退出虚拟显示器