filterNotEqual() public method

Filter all values not having the passed value.
public filterNotEqual ( mixed $varValue ) : string[] | null
$varValue mixed The value to use as upper end.
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 not equal to the passed value.
  *
  * If no entries have been found, the result is an empty array.
  *
  * @return string[]|null
  */
 public function getMatchingIds()
 {
     return $this->objAttribute->filterNotEqual($this->varValue);
 }