芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/PHP/Compat/Function/array_product.php
| // +----------------------------------------------------------------------+ // // $Id: array_product.php,v 1.1 2005/12/05 14:49:08 aidan Exp $ /** * Replace array_product() * * @category PHP * @package PHP_Compat * @link http://php.net/time_sleep_until * @author Arpad Ray
* @version $Revision: 1.1 $ * @since PHP 5.1.0 * @require PHP 4.0.1 (trigger_error) */ if (!function_exists('array_product')) { function array_product($array) { if (!is_array($array)) { trigger_error('The argument should be an array', E_USER_WARNING); return; } if (empty($array)) { return 0; } $r = 1; foreach ($array as $v) { $r *= $v; } return $r; } } ?>