summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/tests/bug34272.phpt
blob: 3a65e2ce2861db30d0b710f96f79f36908a6f8bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Bug #34272 (empty array onto COM object blows up)
--SKIPIF--
<?php 
if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present"; ?>
--FILE--
<?php 
error_reporting(E_ALL);

try {
	$dict = new COM("Scripting.Dictionary");
	$dict->add('foo', array());
	print sizeof($dict['foo'])."\n";
	$dict->add('bar', array(23));
	print sizeof($dict['bar'])." \n";
} catch (Exception $e) {
	print $e;
}
?>
--EXPECT--
0
1