How to custom the magic method?
foreach($data as $key => $value){
$this->data->$key = $value;
}
function __get($name)
{
$this->$name;
}
function __set($name,$value)
{
$this->$name = $value;
}
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.