<?php /** * Autoloads all PHP files in the functions/ folder. */ foreach (glob(__DIR__ . '/functions/*.php') as $filename) { include_once $filename; } // DON'T DELETE STUFF ABOVE THIS LINE IF YOU AREN'T 100% SURE YOU KNOW WHAT YOU ARE DOING