PHP使用不同的单词序列

时间:2016-09-11 21:30:52

标签: php arrays search

我有一个数组中的索引,其字符串如'dubai the-ritz hotel,阿拉伯联合酋长国'我想选择此索引,如果搜索字符串是'dubai rit'或'united arab emirates rit'或'rit dubai'if单词是以任何顺序我想选择这个索引,因为我可以看到它有单词。我知道正常的array_search在这里不起作用

以下不起作用

$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os)) {
    echo "Got Irix";
}
or 

$arr = [
    'foo'    => 'bar',
    'abc'    => 'def',
    'bool'   => true,
    'target' => 'xyz'
];

var_dump( array_search( 'xyz', $arr ) ); 

0 个答案:

没有答案