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";
?>
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";
?>
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);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us