tdphp/td3/2.php

14 lines
240 B
PHP
Raw Permalink Normal View History

2023-03-06 15:21:44 +01:00
<?php
$tableau = array(10, 29, 19, 82, 10, 85);
$nb = 29;
if (in_array($nb, $tableau)) {
echo ("<p>$nb est présent dans le tableau</p>");
}
if (array_search($nb, $tableau)) {
echo ("<p>$nb est présent dans le tableau</p>");
}