बस आपने दो बार एक समारोह घोषित किया है .. उदाहरण:
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;
}
?>
ध्यान दें, मैंने एक ही फ़ंक्शन को दो बार घोषित किया है, एक मेरे global.fun.php
में पेज और फिर से index.php
. में पेज..
यदि आपको संदेह है कि कोई फ़ंक्शन वर्तमान में सेट है:
if (function_exists('Do_Something')){
echo "Function Exists";
}else{
echo "Function Not Found, This name Can be used!";
}