PHP: I have several directories with the same file structure in them:
root/
| listConfigContent.php
105/
| config/
| | config.php
| images/
| js/
106/
| config/
| | config.php
| images/
| js/
107/
⋮
The config.php files do not use namespaces or classes but contain a couple of variables and constants. What do I have to do to access these variables and constants from the listConfigContent.php? As diskussed here (Can PHP namespaces contain variables?) it is not possible to differentiate them by applied namespaces.