You can store strings in an array and those strings can be the file paths. Is that what you mean?
$files=array("/home/user/file.txt","/var/www/html/page.html");
This won't actually store the whole file in the array but just the path. You can then use this with fopen or something to get the data stored within the file.
Good Luck
Rob