Suppose I have following files
<?php
include 'file_A';
include 'file_B';
?>
a function defined foo() in file_B, is there any way to use it in file_A by any means???
actually, I am working in a application where a range of different functions are defined in modules, I want to use these function across the modules without looking where it defined included before or after the file even.