Guest User

Untitled

a guest
Apr 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class homeComponents extends sfComponents
  2. {
  3. public function executeRadomimage()
  4. {
  5. $pictures = glob(sfConfig::get('app_random_image') . '/*.jpg');
  6. $this->picture_name = $pictures[rand(0,count($pictures)-1)];
  7. }
  8. }
Add Comment
Please, Sign In to add comment