File_Fortune::setFiles()
-- Set multiple fortune files
Description
setFiles() may be used to define a list of files from
which to pull fortunes. You may pass either a string single argument, an
array single argument, or multiple string arguments. As examples:
<?php
// single file:
$fortunes->setFiles('/path/to/fortunefile');
// array of files:
$fortunes->setFiles(array('/path/to/fortunefile', '/another/fortunefile', '/more/fortunes'));
// multiple individual files:
$fortunes->setFiles('/path/to/fortunefile', '/another/fortunefile', '/more/fortunes');
?>
|
Throws
throws
no exceptions thrown
Note
This function can not be called
statically.