通过搜索从数组中获取特定数据

时间:2015-11-16 11:11:03

标签: php laravel

我有一个包含许多不同数据的数组,我从服务器获取数据:

 $sp_bots = shell_exec("grep bot | awk '{print $12}' /var/www/laravel/logs/vhosts/website");

在这篇评论中,我得到的所有数据都是“bot”这个词。是的 - 而且我通过awk

切出了一些东西
Mozilla/5.0 [82] => "Mozilla/5.0 [83] => "Googlebot-Image/1.0" [84] => "Googlebot-Image/1.0" [85]

是我现在得到的,

但我只想要数据在哪里?机器人'找到了!我只是不知道如何... array_filter可以做到,但我不知道如何理解语法。

1 个答案:

答案 0 :(得分:0)

如果您获得如下所示的数组,请尝试PHP strpos function

$sp_bots= array( 82 => "Mozilla/5.0", 83 => "Googlebot-Image/1.0", 84 => "Googlebot-Image/1.0" );
foreach($sp_bots as $data) {
    if(strpos($data, 'bot' ) > -1 ) {
      // It does contain bot string
      echo $data .' contains bot string <br/>';//while it will print the other two indexes
    } else {
      // It does not contain bot value
      echo $data .' does not contains bot string <br/>'; //Mozilla/5.0 does not contain bot string
    }
}