1

我想用 'q' 参数和 'or' 运算符触发文件搜索。意图是查找标题 = 'apple' 或 'orange' 的文件

$params = array (
  'q'=> "title = 'apple' or title = 'orange'"
);

但是我没有在文档中找到“或”运算符。因此,可以使用 'not' 和 'and' 的组合来创建等价的 'or',而不是使用 'or',如下所示:

$params = array(
  'q'=> "not ( title !='apple' and title != 'orange' )"
);

这行得通吗?或者如何使用“或”运算符?

4

1 回答 1

0

抱歉,OR 目前不可用,但 Google 正在努力。

于 2013-01-09T05:06:15.517 回答