1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/objects_023.phpt
2008-05-11 03:50:28 +00:00

16 lines
161 B
PHP

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