summaryrefslogtreecommitdiff
path: root/Zend/tests/objects_023.phpt
blob: 042a20e9d8dc09ce55c9fb01b7e2d3f4cd284652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Creating instances dynamically
--FILE--
<?php 

$arr = array(new stdClass, 'stdClass');

new $arr[0]();
new $arr[1]();

print "ok\n";

?>
--EXPECT--
ok