1.20.x user.module user_load_multiple($uids = array(), $conditions = array(), $reset = FALSE)

Load multiple users based on certain conditions.

This function should be used whenever you need to load more than one user from the database. Users are loaded into memory and will not require database access if loaded again during the same page request.

@todo Remove $conditions for consistency with other loaders.

Parameters

$uids: An array of user IDs.

$conditions: (deprecated) An associative array of conditions on the {users} table, where the keys are the database fields and the values are the values those fields must have. Instead, it is preferable to use EntityFieldQuery to retrieve a list of entity IDs loadable by this function.

$reset: A boolean indicating that the internal cache should be reset. Use this if loading a user object which has been altered during the page request.

Return value

An array of user objects, indexed by uid.:

See also

entity_load()

user_load()

user_load_by_mail()

user_load_by_name()

EntityFieldQuery

File

modules/user/user.module, line 265
Enables the user registration and login system.

Code

function user_load_multiple($uids = array(), $conditions = array(), $reset = FALSE) {
  return entity_load('user', $uids, $conditions, $reset);
}