php创建没有类的对象

时间:2013-01-18 09:13:03

标签: php

  

可能重复:
  Creating anonymous objects in php

在JavaScript中,您可以通过以下方式轻松创建没有类的对象:

 myObj = {};
 myObj.abc = "aaaa";

对于PHP,我发现了这个,但它已经快4年了: http://www.subclosure.com/php-creating-anonymous-objects-on-the-fly.html

$obj = (object) array('foo' => 'bar', 'property' => 'value');

现在在2013年使用PHP 5.4,有替代方案吗?

1 个答案:

答案 0 :(得分:562)

您始终可以使用new stdClass()。示例代码:

   $object = new stdClass();
   $object->property = 'Here we go';

   var_dump($object);
   /*
   outputs:

   object(stdClass)#2 (1) {
      ["property"]=>
      string(10) "Here we go"
    }
   */

从PHP 5.4开始,您可以通过以下方式获得相同的输出:

$object = (object) ['property' => 'Here we go'];