- Edited
private $attribute is not used anywhere. I try to pass one parameter the first function get, past two parameters the function set but it is not working what is the differents between get and set
I have this two but doesn't works
$a->attribute("albert",38);
$a->attribure = 5;
class classname {
private $attribute;
function __get($name){
return $this->$name;
}
function __set($name,$value){
$this->$name = $value;
}
}
$a = new classname();
/*$a->__get("albert");
$a->__set("albert",38);
$a->attribute("albert",38);*/
$a->attribure = 5;