<?php
class T
{
	private $str1 = "hello";
	private $str2 = "hello{$str1}";
	
	public function __construct()
	{
		echo $this->str2;
	}
};

new T();
?>