以下に示すように、私は親クラスから変数にアクセスしようとしています:PHP:親クラス変数に
//PARENT CLASS
class InfoString{
private $username = "JOE";
public function _construct(){}
protected function get_username(){
return $this->username;
}
}
class Service extends InfoString{
//this class should now inherit the variables in InfoString, right??
public function _construct(){}
public function hello_username(){
echo "HELLO! ". parent::get_username();
}
}
と私はそうのようなクラスを呼び出します。その代わり
$a = new Service();
$a->hello_username(); //prints nothing, instead of the username
"HELLO!JOE"を取得すると、空の文字列が得られます。私はここで間違って何をしていますか?
また、 'InfoString'クラスに設定パラメータが含まれているとします。このクラスを拡張することをお勧めしますか?たとえば、 'InfoString'クラスから別のクラスに設定変数を取得するための適切な実装ですか? ??
ありがとうございました。
http://codepad.viper-7.com/wqiKSF – xdazz
いいえ、その正しい、あなたのコードを書いている場所を確認してください。エラーはありません。 – Bajrang
コードに間違いはありませんでしたか?私のサーバーではうまく動作し、欲望の出力をプリントします。 –