class Kun {
/**
* init data
* @var array
*/
private $data = [];
/**
* magic method php
* @param string $name
* @param string $value
*/
public function __set($name, $value)
{
echo 'Membuat property baru bernama '.$name.' dengan nilai '.$value;
$this->data[$name] = $value;
}
}
$instance = new Kun;
$instance->new_property = 'Hello Kun Kin';
// output akan :
// Membuat property baru bernama new_property dengan nilai Hello Kun Kin