Answers for "php taille tableau"

PHP
0

tableau aléatoire php

<?php
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "n";
echo $input[$rand_keys[1]] . "n";
?>
Posted by: Guest on January-25-2021
0

php count avec un tableau bidimentionnel

function NombreDeFille($case)
{
    $fille = 0;
    foreach ($case as $valeur)
    {
        foreach($valeur as $valeur2)
        {
            if ($valeur2 == "fille")
                $fille++;
        }
    } 
    return $fille;
}
echo NombreDeFille($Tablepersonne);
Posted by: Guest on October-17-2020

Browse Popular Code Answers by Language