<?php

class example{
private $a = "Это приватное свойство \n";

public function showA(){
	echo $this->a;
}

public function alterA($text){
	$this->a = $text;
}

}

$test = new example;
$test->showA();
$test->alterA('я изменил приватное свойство');
$test->showA();