Skip to content

Instantly share code, notes, and snippets.

@mommaroodles
Created December 11, 2013 10:23
Show Gist options
  • Save mommaroodles/7908122 to your computer and use it in GitHub Desktop.
Save mommaroodles/7908122 to your computer and use it in GitHub Desktop.
PHP Include All Files In A Folder
<?php
foreach (glob('folder/*.php') as $filename)
{
include_once $filename;
}
new Class();
new ClassTwo();
new ClassThree();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment