Skip to content

Instantly share code, notes, and snippets.

@lthurston
Created December 23, 2010 18:54
Show Gist options
  • Save lthurston/753381 to your computer and use it in GitHub Desktop.
Save lthurston/753381 to your computer and use it in GitHub Desktop.
public function findAllByUids($uids) {
$uids = t3lib_div::trimExplode(',',$uids);
$query = $this->createQuery();
$res = $query->matching($query->in('uid',$uids))->execute();
return $res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment