366

在 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,还有其他选择吗?

4

1 回答 1

780

您可以随时使用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'];
于 2013-01-18T09:16:07.553 回答