diff options
Diffstat (limited to 'src/phorkie/File.php')
| -rw-r--r-- | src/phorkie/File.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/phorkie/File.php b/src/phorkie/File.php index c86e5e0..331f2e5 100644 --- a/src/phorkie/File.php +++ b/src/phorkie/File.php @@ -148,6 +148,13 @@ class File public function isText() { $ext = $this->getExt(); + if ($ext == '') { + //no file extension? then consider the size + $size = filesize($this->getFullPath()); + //files <= 4kiB are considered to be text + return $size <= 4096; + } + if (!isset($GLOBALS['phorkie']['languages'][$ext]['mime'])) { return false; } |
