我知道我可以在运行时通过执行
$obj = (object)array( foo => bar );+
我可以用这种方式
echo $obj->foo; //bar
如果要使$obj从现有类继承,该怎么办?
What I wanna achive: I m forking paris project on github (https://github.com/balanza/paris). It s an active record class. I wonder I need to declare a class for every object, even if it s empty:
class User extends Model{}
我想我可能会使用动态对象来避免这些无聊的东西。