fork download
  1. <?php
  2.  
  3. class example{
  4. private $a = "Это приватное свойство \n";
  5.  
  6. public function showA(){
  7. echo $this->a;
  8. }
  9.  
  10. public function alterA($text){
  11. $this->a = $text;
  12. }
  13.  
  14. }
  15.  
  16. $test = new example;
  17. $test->showA();
  18. $test->alterA('я изменил приватное свойство');
  19. $test->showA();
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Это приватное свойство 
я изменил приватное свойство