Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class mFile
- {
- public $name, $time, $size;
- }
- foreach (glob("*.*") as $curFilename)
- {
- $curFileObj = new mFile;
- $curFileObj->name = $curFilename;
- $fileArray[] = $curFileObj;
- }
- printf("%s", json_encode($fileArray));
- ?>
Advertisement
Add Comment
Please, Sign In to add comment