単純に、関数を2回宣言しました。例:
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;
}
?>
同じ関数を2回宣言しました。1つはglobal.fun.php
にあります。 ページとindex.php
でもう一度 ページ..
関数が現在設定されているかどうか疑わしい場合:
if (function_exists('Do_Something')){
echo "Function Exists";
}else{
echo "Function Not Found, This name Can be used!";
}