1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/standard/tests/array/bug48484.phpt
2018-10-14 19:45:12 +02:00

9 lines
143 B
PHP

--TEST--
Bug 48484 (array_product() always returns 0 for an empty array)
--FILE--
<?php
var_dump(array_product(array()));
?>
--EXPECT--
int(1)