mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
56f90492d6
For rationale, see https://github.com/php/php-src/pull/6787 Extensions migrated in this part: * bcmath * bz2 * calendar * com_dotnet * ctype Closes GH-6797.
15 lines
219 B
PHP
15 lines
219 B
PHP
--TEST--
|
|
Bug #79248 (Traversing empty VT_ARRAY throws com_exception)
|
|
--EXTENSIONS--
|
|
com_dotnet
|
|
--FILE--
|
|
<?php
|
|
$v = new variant([], VT_ARRAY);
|
|
foreach ($v as $el) {
|
|
var_dump($el);
|
|
}
|
|
echo "done\n";
|
|
?>
|
|
--EXPECT--
|
|
done
|