<?php

error_reporting(-1);

//1
$obj = new stdClass();
$obj->prop = 1;


//2
class A
{
	public function __construct()
	{
		$this->prop = 2;
	}
}


var_dump($obj, new A);