Exemplo n.º 1
0
 public function getAllNameList()
 {
     $fileList = glob($this->path . '/*.' . $this->ext);
     $proxyLists = [];
     foreach ($fileList as $fileName) {
         if ($data = DryPath::parsePath($fileName)) {
             $proxyLists[] = $data['filename'];
         }
     }
     return $proxyLists;
 }