mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
18 lines
No EOL
382 B
PHP
18 lines
No EOL
382 B
PHP
<?php
|
|
header("Content-Type: application/json");
|
|
|
|
$directories = array();
|
|
|
|
if ($handle = opendir(getcwd())) {
|
|
while (false !== ($file = readdir($handle))) {
|
|
if (is_dir($file) && $file[0] !== "." ) {
|
|
array_push($directories, $file);
|
|
}
|
|
}
|
|
|
|
closedir($handle);
|
|
}
|
|
|
|
sort($directories);
|
|
echo json_encode( array('directories' => $directories ));
|
|
?>
|