web-dev-qa-db-ja.com

Classメソッド内で関数を呼び出しますか?

私はこれをどのように行えばよいかを理解しようとしてきましたが、どのようにすればよいかよくわかりません。

ここに私がやろうとしていることの例があります:

class test {
     public newTest(){
          function bigTest(){
               //Big Test Here
          }
          function smallTest(){
               //Small Test Here
          }
     }
     public scoreTest(){
          //Scoring code here;
     }
}

ここに私が問題を抱えている部分がありますが、どのようにbigTest()を呼び出すのですか?

98
WAC0020

これを試してください:

class test {
     public function newTest(){
          $this->bigTest();
          $this->smallTest();
     }

     private function bigTest(){
          //Big Test Here
     }

     private function smallTest(){
          //Small Test Here
     }

     public function scoreTest(){
          //Scoring code here;
     }
}

$testObject = new test();

$testObject->newTest();

$testObject->scoreTest();
192

指定したサンプルは有効ではないPHPであり、いくつかの問題があります。

public scoreTest() {
    ...
}

適切な関数宣言ではありません-'function'キーワードで関数を宣言する必要があります。

構文はむしろ次のようになります。

public function scoreTest() {
    ...
}

次に、bigTest()関数とsmallTest()関数をpublic function(){}でラップしてもプライベートになりません。これらの両方でprivateキーワードを使用する必要があります。

class test () {
    public function newTest(){
        $this->bigTest();
        $this->smallTest();
    }

    private function bigTest(){
        //Big Test Here
    }

    private function smallTest(){
           //Small Test Here
    }

    public function scoreTest(){
      //Scoring code here;
    }
}

また、クラス宣言でクラス名を大文字にすることも慣習です(「テスト」)。

お役に立てば幸いです。

18
pjbeardsley

このようなものを探していると思います。

class test {

    private $str = NULL;

    public function newTest(){

        $this->str .= 'function "newTest" called, ';
        return $this;
    }
    public function bigTest(){

        return $this->str . ' function "bigTest" called,';
    }
    public function smallTest(){

        return $this->str . ' function "smallTest" called,';
    }
    public function scoreTest(){

        return $this->str . ' function "scoreTest" called,';
    }
}

$test = new test;

echo $test->newTest()->bigTest();
8
Ali Hasan
class test {
    public newTest(){
        $this->bigTest();
        $this->smallTest();
    }

    private  function bigTest(){
        //Big Test Here
    }

    private function smallTest(){
       //Small Test Here
    }

    public scoreTest(){
      //Scoring code here;
    }
 }
6
Meganathan S

クラスからインスタンス化されたオブジェクトのメソッド(newステートメントを使用)を呼び出すには、それを「ポイント」する必要があります。外部からは、新しいステートメントによって作成されたリソースを使用するだけです。 newによって作成されたオブジェクトPHP内で、同じリソースを$ this変数に保存します。したがって、クラス内では、$ thisによってメソッドをポイントする必要があります。クラス内でsmallTestをクラス内から呼び出すには、PHPに、新しいステートメントによって作成されたすべてのオブジェクトのうち、実行するオブジェクトを指定する必要があります。

$this->smallTest();
4
Ingeniero

newTestを呼び出して、そのメソッド内で宣言された関数を「表示」する必要があります( Functions within functions を参照)。しかし、それは単なる通常の関数であり、メソッドはありません。

3
Gumbo

「関数内の関数」を得るために、あなたが求めていることを理解している場合、PHP 5.3が必要です。ここでは、新しいクロージャー機能を利用できます。

だからあなたが持つことができます:

public function newTest() {
   $bigTest = function() {
        //Big Test Here
   }
}
3
blockhead
  class sampleClass
    { 
        public function f1()
        {
           return "f1 run";
        }

        public function f2()
        {
           echo ("f2 run" );
           $result =  $this->f1();
           echo ($result);
        }   

    f2();  

    }

出力:

f2 run f1 run

3
Masoud Siahkali

現在のクラスの静的変数または関数を呼び出す場合は、self::CONSTの代わりに$this->CONSTを使用することもできます。

1
AlexioVay

例1

class TestClass{
public function __call($name,$arg){
call_user_func($name,$arg);
}
}
class test {
     public function newTest(){

          function bigTest(){
               echo 'Big Test Here';
          }
          function smallTest(){
               echo 'Small Test Here';
          }

$obj=new TestClass;

return $obj;
     }

}
$rentry=new test;
$rentry->newTest()->bigTest();

example2

class test {
     public function newTest($method_name){

          function bigTest(){
               echo 'Big Test Here';
          }
          function smallTest(){
               echo 'Small Test Here';
          }

      if(function_exists( $method_name)){    
call_user_func($method_name);
      }
      else{
          echo 'method not exists';
      }
     }

}
$obj=new test;
$obj->newTest('bigTest')
0
zloctb