How would I include two functions with the same name in a php file?
I have two files:
file1.php which includes
function getResidentCount() {}
function getResidentData() {}
file2.php also includes
function getResidentCount() {}
function getResidentData() {}
I need file3.php to include all of these functions since each one is used to calculate different resident counts and data.
Any idea how I can include both of these files in one file. I cannot change the original files (they are in production for a live app).
Thanks, Claudia