Ejemplo n.º 1
0
 /**
  *  列出文件列表
  */
 public static function ls($paramArr)
 {
     $options = array('__dir' => './', '__pattern' => '*.*');
     if (is_array($paramArr)) {
         $options = array_merge($options, $paramArr);
     }
     extract($options);
     return API_File::ls($__dir, $__pattern);
 }