PHP - 关联数组作为对象

时间:2012-08-30 18:18:38

标签: php class object yaml associative-array

  

可能重复:
  Convert Array to Object PHP

我正在创建一个简单的PHP应用程序,我想将YAML文件用作数据存储。我将数据作为关联数组获取,例如:

$user = array('username' => 'martin', 'md5password' => '5d41402abc4b2a76b9719d911017c592')

但是,我想用一些函数扩展关联数组并使用->运算符,所以我可以这样写:

$user->username = 'martin';  // sets $user['username']
$user->setPassword('hello'); // writes md5 of 'hello' to $user['md5password']
$user->save();               // saves the data back to the file

如果没有类定义,有没有一种好方法呢?

基本上,我想在PHP中使用JavaScript样式对象:)

2 个答案:

答案 0 :(得分:34)

投下它:

$user = (object)$user;

当然,还有其他更灵活的解决方案,比如创建一个实现ArrayAccess的类:

$user = new User(); // implements ArrayAccess

echo $user['name'];
// could be the same as...
echo $user->name;

答案 1 :(得分:6)

字面上只需制作一个$class = new stdClass;并重复并重新分配。请注意,这只是一个层次,就像类型转换一样。你必须编写一个递归迭代器来完成它。从我记得Kohana 2/3有to_object()你可以使用。

找到它:

class Arr extends Kohana_Arr {

    public static function to_object(array $array, $class = 'stdClass')
    {
            $object = new $class;
            foreach ($array as $key => $value)
            {
                    if (is_array($value))
                    {
                    // Convert the array to an object
                            $value = arr::to_object($value, $class);
                    }
                    // Add the value to the object
                    $object->{$key} = $value;
            }
            return $object;
    }