summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/tests/bug39596.phpt
blob: dc8d1ef066106081e960898b232fcff1a6ccb2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Bug #39596 (Creating Variant of type VT_ARRAY)
--SKIPIF--
<?php 
if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present"; ?>
--FILE--
<?php 
error_reporting(E_ALL);

try {
	$binding_string = array('aaa','bbb','ccc');
	$v = new VARIANT( $binding_string, VT_ARRAY );
	foreach ($v AS $element) {
		print $element."\n";
	}
} catch (Exception $e) {
	print $e;
}
?>
--EXPECT--
aaa
bbb
ccc