function LiveEnvironment::_file_get_contents_ in Realistic Dummy Content 8
Internal function used to get the contents of a file.
Wrapper around PHP's file_get_contents() (or a simulation thereof). This function will not return an \Exception. Please use Environment:: file_get_contents(), instead.
Parameters
$filename: A valid filename, for example /drupal/root/sites/all/modules/your_module/realistic_dummy_content/fields/node/blog/body/03.txt
Return value
Undefined in case the filename is invalid; otherwise returns the contents of the file.
Overrides Environment::_file_get_contents_
File
- api/
src/ environments/ LiveEnvironment.php, line 24 - Define autoload class.
Class
- LiveEnvironment
- The live environment.
Namespace
Drupal\realistic_dummy_content_api\environmentsCode
function _file_get_contents_($filename) {
return file_get_contents($filename);
}