Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単純な oop では、このような関数から結果を取得します
<?php class A{ function geta(){ ..... $a=..; return $someresult;}} ?>
関数 geta() から結果を取得するには、新しいインスタンスを作成するだけです
$new=new A(); echo $new->geta();
私の質問、変数 $a にアクセスする方法は?
そのような $a にアクセスすることはできません。次の$thisコマンドを使用する必要があります。
$this
<?php class A{ private $a = "Hello world"; function geta(){ return $this->a;}} ?>
関数を呼び出すと、geta()が返されaます。他の人が同様の命名関数を使用してこれらの値を返すため、これはほぼ必須のベスト プラクティスです。
geta()
a
I have two different model class,
public class ModelDto implements IsSerializable{ public ModelDto {} private Integer id; private String name; private ArrayList<Test&