Simplement vous avez déclaré une fonction deux fois.. Exemple :
Global.Fun.php
<?php
function Do_Something (){
echo "This Does Something";
}
?>
Index.php
<?php
include "Global.Fun.php";
function Do_Something($Arg){
echo "Argument Supplied".$Arg;
}
?>
Remarquez, j'ai déclaré la même fonction deux fois, une dans mon global.fun.php
page et encore dans le index.php
..
Si vous doutez qu'une fonction soit actuellement définie :
if (function_exists('Do_Something')){
echo "Function Exists";
}else{
echo "Function Not Found, This name Can be used!";
}