4

違いは何ですか:

$this->$a$this->b

私のクラスではこれがあります:

class someClass{
    public $a;
    function aFunction(){
      $this->a = 5;
      $this->$b = 7;
    }
 }

余分な「$」を持っているとどうなりますか$this->$b

4

1 に答える 1

11

多くの違いがあります:

$this->a$aクラスのプロパティを指します

$this->$b一方$b、文字列として変数に格納されている名前でプロパティを参照します。

$b = "a";
$this->$b equals $this->a

$b = "hello"
$this->$b equals $this->hello
于 2012-07-31T11:29:11.017 に答える