We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77485e3 commit 1e06d47Copy full SHA for 1e06d47
phpfastcache/3.0.0/abstract.php
@@ -270,9 +270,6 @@ protected function required_extension($name) {
270
271
272
protected function readfile($file) {
273
- if(function_exists("file_get_contents")) {
274
- return @file_get_contents($file);
275
- } else {
276
$string = "";
277
278
$file_handle = @fopen($file, "r");
@@ -291,7 +288,6 @@ protected function readfile($file) {
291
288
fclose($file_handle);
292
289
293
290
return $string;
294
- }
295
}
296
297
0 commit comments