Derniers tutoriels de développement web
 

PHP array_product() Function

<Tableau PHP Référence

Exemple

Calculer et retourner le produit d'un tableau:

<?php
$a=array(5,5);
echo(array_product($a));
?>
»Exécuter exemple

Définition et utilisation

Le array_product() calcule et renvoie le produit d'une matrice.


Syntaxe

array_product( array )

Paramètre La description
array Champs obligatoires. Spécifie une matrice

Détails techniques

Valeur de retour: Renvoie le produit sous forme d'entier ou flottant
PHP Version: 5.1.0+
changelog: PHP 5.3.6, le produit d'un tableau vide est 1. Avant PHP 5.3.6, cette fonction retourneraient 0 pour un tableau vide.

autres exemples

Exemple 1

Calculer et retourner le produit d'un tableau:

<?php
$a=array(5,5,2,10);
echo(array_product($a));
?>
»Exécuter exemple

<Tableau PHP Référence