TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
390 B
14 lines
390 B
--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)
|
|
|