file_load_multiple
- Versions
- 7
file_load_multiple($fids = array(), $conditions = array())
Load file objects from the database.
See also
@see file_load()
Parameters
$fids An array of file IDs.
$conditions An array of conditions to match against the {files} table. These should be supplied in the form array('field_name' => 'field_value').
Return value
An array of file objects, indexed by fid.
Related topics
Code
includes/file.inc, line 445
<?php
function file_load_multiple($fids = array(), $conditions = array()) {
return entity_load('file', $fids, $conditions);
}
?>Login or register to post comments 