doulangbizhan5160 2013-10-23 00:53 采纳率: 100%
浏览 100
已采纳

使用php在数组中查找关键字?

I have one keyword like this format

sample text

Also i have one array like this following format

Array
(
   [0] => Canon sample printing text
   [1] => Captain text
   [2] => Canon EOS Kiss X4 (550D / Rebel T2i) + Double Zoom Lens Kit
   [3] => Fresh sample Roasted Seaweed
   [4] => Fresh sample text Seaweed
)

I want to find sample text keyword in this array. My expected result

Array
    (
       [0] => Canon sample printing text        //Sample and Text is here
       [1] => Captain text             //Text is here
       [3] => Fresh sample Roasted Seaweed       //Sample is here
       [4] => Fresh sample text Seaweed          //Sample text is here
    )

I am already trying strpos but its not getting correct answer

Please advise

  • 写回答

2条回答 默认 最新

  • douxi4114 2013-10-23 01:03
    关注

    A simple preg_grep will do the job:

    $arr = array(
        'Canon sample printing text',
        'Captain text',
        'Canon EOS Kiss X4 (550D / Rebel T2i) + Double Zoom Lens Kit',
        'Fresh sample Roasted Seaweed',
        'Fresh sample text Seaweed'
    );
    $matched = preg_grep('~(sample|text)~i', $arr);
    print_r($matched);
    

    OUTPUT:

    Array
    (
        [0] => Canon sample printing text
        [1] => Captain text
        [3] => Fresh sample Roasted Seaweed
        [4] => Fresh sample text Seaweed
    )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?