Advertisement
SashaRaaa

Untitled

Jul 24th, 2018
1,089
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. class Gallery
  4. {
  5.         public $images = [];
  6.  
  7.         public function getImages($dir)
  8.     {
  9.         $this->images[] =scandir (__DIR__ . $dir);
  10.         //$this->images = array_diff ($this->images, ['.', '..']);
  11.         return $this->images;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement