filterGreaterThan() public method

Filter all values greater than the passed value.
public filterGreaterThan ( mixed $varValue, boolean $blnInclusive = false ) : string[] | null
$varValue mixed The value to use as lower end.
$blnInclusive boolean If true, the passed value will be included, if false, it will be excluded.
return string[] | null The list of item ids of all items matching the condition or null if all match.
Beispiel #1
0
 /**
  * Fetch the ids for all items that hold a value that is greater than the passed value.
  *
  * If no entries have been found, the result is an empty array.
  *
  * @return string[]|null
  */
 public function getMatchingIds()
 {
     return $this->objAttribute->filterGreaterThan($this->varValue, $this->blnInclusive);
 }