## add - 添加到过滤器
~~~
use api\Bloomfilter;
// 参数为需要添加的数据,支持数组批量添加
Bloomfilter::add($word);
~~~
## exists - 检测是否存在
不存在则一定不存在,存在不一定存在
~~~
use api\Bloomfilter;
// 参数为需要检测的数据
// 存在返回TRUE
// 不存在返回FALSE
$exists = Bloomfilter::exists($word);
~~~