Skip to content

Instantly share code, notes, and snippets.

@szbl
Created June 4, 2015 20:18
Show Gist options
  • Save szbl/f3aeff6e2378f7edf801 to your computer and use it in GitHub Desktop.
Save szbl/f3aeff6e2378f7edf801 to your computer and use it in GitHub Desktop.
<?php
// single directory
foreach ( glob( dirname( __FILE__ ) . '/lib/*.php' ) as $file ) include $file;
// Or if you're doing 1 directory deep:
foreach ( glob( dirname( __FILE__ ) . '/lib/*.php' ) as $file ) include $file;
foreach ( glob( dirname( __FILE__ ) . '/lib/*/*.php' ) as $file ) include $file;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment