Skip to content

Instantly share code, notes, and snippets.

@catwhocode
Created July 31, 2022 02:39
Show Gist options
  • Save catwhocode/d6ad790ddf6074ec29b95534d7256475 to your computer and use it in GitHub Desktop.
Save catwhocode/d6ad790ddf6074ec29b95534d7256475 to your computer and use it in GitHub Desktop.
REQUIREd all php files in certain folders
<?php
$dir = __DIR__ . '/routes/';
$files = glob($dir . "*.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