如何读取 __construct() 中的变量?
这是示例代码:
class Sample {
private $test;
public function __construct(){
$this->test = "Some text here.";
}
}
$sample = new Sample();
echo $sample->test;
这段代码有什么问题?因为 __construct 是自动的,我只是认为它会在 class sample 上运行并自动读取它。
是否可以在不触及 __construct() 的情况下回显这一点?谢谢你。