sql >> データベース >  >> RDS >> Mysql

以前に宣言された関数を再宣言できません

    単純に、関数を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!";
    }
    



    1. Whileループを使用したMySQL挿入

    2. 連続した繰り返し/重複の順序付きカウント

    3. PostgreSQLとOracle:コスト、使いやすさ、機能の違い

    4. mysql_real_escape_stringを使用して期待される整数値をエスケープする必要がありますか、それとも(int)$e​​xpectedintegerを使用するだけですか?