* "abcdefg" => "defg" # false * "abcdefg" => "abcd" # true * * * @package sapphire * @subpackage search */ class StartsWithFilter extends SearchFilter { /** * Applies a substring match on a field value. * * @return unknown */ public function apply(SQLQuery $query) { $query = $this->applyRelation($query); $query->where("LOCATE('{$this->getValue()}', {$this->getName()}) = 1"); } } ?>