Is it possible to run require_once
recursively in one line like this:
<?php
require_once('./OAuth2/*');
Or would you have to go to each file directly and require
it?
cant do it that way. something like this would work:
foreach (glob("./OAuth2/*.php") as $filename)
{
require_once($filename);
}