public Phalcon\Mvc\Model[] filter (callback $filter)
Filters a resultset returning only those the developer requires
$filtered = $robots->filter(function($robot){ if ($robot->id < 3) { return $robot; } });
public Phalcon\Mvc\Model[] filter (callback $filter)
Filters a resultset returning only those the developer requires
$filtered = $robots->filter(function($robot){ if ($robot->id < 3) { return $robot; } });
Please login to continue.