LdapTools\Query\Builder\FilterBuilder::like PHP 메소드

like() 공개 메소드

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
리턴 LdapTools\Query\Operator\Wildcard
    public function like($attribute, $value)
    {
        return new Wildcard($attribute, Wildcard::LIKE, $value);
    }