PHP方法从数组对象属性动态获取值

时间:2014-07-06 00:29:14

标签: php arrays object properties

在这个类中,是否可以从数组中动态获取值?

class MyClass {

    private $array_data;

    function __construct() {
        $this->array_data['first']['a'] = '1';
        $this->array_data['second']['b'] = '2';
        $this->array_data['third']['c'] = '3';
    }

    public function getIndexValue($index){
        return $this->{'array_data' . $index};
    }
}

$MyClass = new MyClass();

// Prints NULL, but i expect '1'
var_dump($MyClass->getIndexValue("['first']['a']"));

1 个答案:

答案 0 :(得分:3)

这是一个简单的解决方案。不是传入索引的字符串,而是传入一个数组。

public function getIndexValue(array $indexes) {
    // count the # of indexes we have
    $count = count($indexes);

    // local reference to data
    $data = $this->array_data;

    for ($i = 0; $i < $count; $i++)
    {
        // enter the array at the current index
        $data = $data[$indexes[$i]];
    }

    return $data;
}

然后你不是一个字符串,而是传入一个数组:

$MyClass->getIndexValue(['first', 'a'])