ru_php/Zend/tests/objects/objects_023.phpt

16 lines
160 B
Plaintext
Raw Permalink Normal View History

--TEST--
Creating instances dynamically
--FILE--
<?php
$arr = array(new stdClass, 'stdClass');
new $arr[0]();
new $arr[1]();
print "ok\n";
?>
--EXPECT--
ok