This is the way I would go about doing this:
filea.php:
include_once('parse.php');
fileb.php:
include_once('parse.php');
parse.php:
function parseArguments(){...}
php can detect if the file parse.php is already included and not
include it again, hence not redeclaring the function. Give that a go.