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

endsWith() 공개 메소드

Places a wildcard at the beginning of the search term.
public endsWith ( $attribute, $value ) : Wildcard
$attribute
$value
리턴 LdapTools\Query\Operator\Wildcard
    public function endsWith($attribute, $value)
    {
        return new Wildcard($attribute, Wildcard::ENDS_WITH, $value);
    }