php-src/Zend/tests/objects_023.phpt

16 lines
160 B
Plaintext
Raw Normal View History

2008-05-11 03:15:13 +00:00
--TEST--
Creating instances dynamically
--FILE--
2018-10-14 15:45:48 +00:00
<?php
2008-05-11 03:15:13 +00:00
$arr = array(new stdClass, 'stdClass');
new $arr[0]();
new $arr[1]();
print "ok\n";
?>
--EXPECT--
ok