All pastes #2098774 Raw Edit

Miscellany

public php v1 · immutable
#2098774 ·published 2012-01-04 03:46 UTC
rendered paste body
<?php$webUrl = '';$myDirectory = opendir('.');while($entryName = readdir($myDirectory)) {        $dirArray[] = $entryName;}closedir($myDirectory);$file_stack = array();for($i = 0; $i < count($dirArray); $i++) {  if(preg_match('/^\.+$/', $dirArray[$i]))    continue;  $file_stack[]['url']      = $webUrl . '/' . $dirArray[$i];  $file_stack[]['filesize'] = filesize($dirArray[$i]);  $file_stack[]['filetype'] = filetype($dirArray[$i]);}echo json_encode($file_stack);?>