Skip to content

Instantly share code, notes, and snippets.

@jeremejazz
Last active January 9, 2024 22:19
Show Gist options
  • Save jeremejazz/0475ee9e0c78702f5a68 to your computer and use it in GitHub Desktop.
Save jeremejazz/0475ee9e0c78702f5a68 to your computer and use it in GitHub Desktop.
PHP require all files in folder
<?php
$files = glob( __DIR__ . '/folder/*.php');
foreach ($files as $file) {
require($file);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment