In c++ we could modify the private variable in a class use friend
keyword.
How could it be done in php?
class YourBag
{
int money;
friend class Thief; // friend?
};
keyword.
How could it be done in php?
class YourBag
{
int money;
friend class Thief; // friend?
};
Comment