This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
filespread/res/php/getlists.php

22 lines
350 B
PHP

<?php
/**
* FileSpread
* php for json string of lists
*
* Copyright (c) 2016 Marcel Kapfer (mmk2410)
* MIT License
*/
$dir = '../../lists/';
$files = scandir($dir);
$i = 0;
foreach ($files as $file) {
if ( in_array($file, array(".", "..")) ) {
unset($files[$i]);
}
$i++;
}
echo json_encode(array("lists" => $files));