* // This will find entries that contain an attribute "sn" that ends with * // "foobar": * $filter = Horde_Ldap_Filter::create('sn', 'ends', 'foobar'); * * // This will find entries that contain an attribute "sn" that has any * // value set: * $filter = Horde_Ldap_Filter::create('sn', 'any'); *
* $filter = Horde_Ldap_Filter::combine('or', array($filter1, $filter2)); *