Advertisement
Guest User

Untitled

a guest
Jul 1st, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. <?php
  2. $files = scandir('./css');
  3. $regex = 'something';
  4. foreach($files as $file)
  5. {
  6.     if(preg_match($regex, $file))
  7.         include $file;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement