コード例 #1
0
ファイル: games.php プロジェクト: DINKIN/rokket
 public static function getAll()
 {
     $handle = opendir(dir::games(''));
     while ($file = readdir($handle)) {
         if (in_array($file, ['.', '..'])) {
             continue;
         }
         self::$games[] = self::getConfig($file);
     }
     return self::$games;
 }