owner example

if ( ! $include_hidden && '.' === $struc['name'][0] ) {
                continue;
            }

            if ( $limit_file && $struc['name'] !== $limit_file ) {
                continue;
            }

            $struc['perms']       = $this->gethchmod( $path . $entry );
            $struc['permsn']      = $this->getnumchmodfromh( $struc['perms'] );
            $struc['number']      = false;
            $struc['owner']       = $this->owner( $path . $entry );
            $struc['group']       = $this->group( $path . $entry );
            $struc['size']        = $this->size( $path . $entry );
            $struc['lastmodunix'] = $this->mtime( $path . $entry );
            $struc['lastmod']     = gmdate( 'M j', $struc['lastmodunix'] );
            $struc['time']        = gmdate( 'h:i:s', $struc['lastmodunix'] );
            $struc['type']        = $this->is_dir( $path . $entry ) ? 'd' : 'f';

            if ( 'd' === $struc['type'] ) {
                if ( $recursive ) {
                    $struc['files'] = $this->dirlist( $path . $struc['name']$include_hidden$recursive );
                } else {
                    
if ( ! $include_hidden && '.' === $struc['name'][0] ) {
                continue;
            }

            if ( $limit_file && $struc['name'] !== $limit_file ) {
                continue;
            }

            $struc['perms']       = $this->gethchmod( $path . $entry );
            $struc['permsn']      = $this->getnumchmodfromh( $struc['perms'] );
            $struc['number']      = false;
            $struc['owner']       = $this->owner( $path . $entry );
            $struc['group']       = $this->group( $path . $entry );
            $struc['size']        = $this->size( $path . $entry );
            $struc['lastmodunix'] = $this->mtime( $path . $entry );
            $struc['lastmod']     = gmdate( 'M j', $struc['lastmodunix'] );
            $struc['time']        = gmdate( 'h:i:s', $struc['lastmodunix'] );
            $struc['type']        = $this->is_dir( $path . $entry ) ? 'd' : 'f';

            if ( 'd' === $struc['type'] ) {
                if ( $recursive ) {
                    $struc['files'] = $this->dirlist( $path . $struc['name']$include_hidden$recursive );
                } else {
                    
Home | Imprint | This part of the site doesn't use cookies.