user_load_multiple
- Versions
- 7
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.
See also
@see user_load()
See also
@see user_load_by_name()
Parameters
$uids An array of user IDs.
$conditions An array of conditions to match against the {users} table. These should be supplied in the form array('field_name' => 'field_value').
$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.
Code
modules/user/user.module, line 182
<?php
function user_load_multiple($uids = array(), $conditions = array(), $reset = FALSE) {
return entity_load('user', $uids, $conditions, $reset);
}
?>Login or register to post comments 