Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $files = array_merge (
  2. glob (__DIR__.'/inlcudes/*/*.php'),
  3. glob (__DIR__.'/includes/*.php')
  4. );
  5.  
  6. if(!empty($files)) {
  7. array_walk ($files, function ($file) {
  8. require_once $file;
  9. });
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement