最佳答案
如何从对象方法中的给定参数创建属性?
class Foo{
public function createProperty($var_name, $val){
// here how can I create a property named "$var_name"
// that takes $val as value?
}
}
我希望能够访问的财产,像:
$object = new Foo();
$object->createProperty('hello', 'Hiiiiiiiiiiiiiiii');
echo $object->hello;
还有,我是否有可能将财产设置为公有/受保护/私有?我知道在这种情况下它应该是公共的,但是我可能想添加一些魔法方法来获得受保护的属性和内容:)
protected $user_properties = array();
public function createProperty($var_name, $val){
$this->user_properties[$var_name] = $val;
}
public function __get($name){
if(isset($this->user_properties[$name])
return $this->user_properties[$name];
}
你觉得这是个好主意吗?