Beispiel #1
0
 /**
  *@param string $filename
  *@return array
  */
 public static function QuickFileRead($file)
 {
     if ($file instanceof FilenameProcessor) {
         $filename = $file->FullQualifiedNameAndPath();
     } else {
         $filename = $file;
     }
     return FileUtil::getFileContents($filename);
 }