I unsuccsessfully tried the following:
class myclass {
$this->$myvariable[1]=20;
$this->$myvariable[2]=20;
function myfuction1{
print $this->$myvariable[1];
;
}
function myfuction2{
print $this->$myvariable[2];
}
} //end of myclass;
Thanks
class myclass {
$this->$myvariable[1]=20;
$this->$myvariable[2]=20;
function myfuction1{
print $this->$myvariable[1];
;
}
function myfuction2{
print $this->$myvariable[2];
}
} //end of myclass;
Thanks
Comment