<?php

class A
{
	private $text = 5;
	public function getText()
	{
		echo $this->text;
	}
}

$example = new A;
$example->getText();
// your code goes here