redribben

api

Oct 28th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. class mFile
  3. {
  4.     public $name, $time, $size;
  5. }
  6.  
  7. foreach (glob("*.*") as $curFilename)
  8. {
  9.     $curFileObj = new mFile;
  10.     $curFileObj->name = $curFilename;
  11.     $fileArray[] = $curFileObj;
  12. }
  13. printf("%s", json_encode($fileArray));
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment