1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/standard/tests/array/array_product_variation2.phpt
2020-06-24 13:13:44 +02:00

15 lines
390 B
PHP

--TEST--
Test array_product() function : variation
--FILE--
<?php
echo "*** Testing array_product() : variations ***\n";
echo "\n-- Testing array_product() function with a keyed array array --\n";
var_dump( array_product(array("bob" => 2, "janet" => 5)) );
?>
--EXPECT--
*** Testing array_product() : variations ***
-- Testing array_product() function with a keyed array array --
int(10)