<?php
	
class A{

private $a;

public function __construct(){

$a = 5;

}


}

$a=new A();
print_r($a);


?>