LdapTools\Query\Builder\FilterBuilder::like PHP Method

like() public method

Do not escape wildcard characters in the value, but will escape all other characters. This allows for searches That may need several arbitrarily placed wildcards (ie. sn=Th*m*s)
public like ( $attribute, $value ) : Wildcard
$attribute
$value
return LdapTools\Query\Operator\Wildcard
    public function like($attribute, $value)
    {
        return new Wildcard($attribute, Wildcard::LIKE, $value);
    }