summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/tests/bug34272.phpt
blob: 27dc5142d32200b12a3ecbf73c91fcb2165bfcd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #34272 (empty array onto COM object blows up)
--EXTENSIONS--
com_dotnet
--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