13 lines
240 B
PHP
13 lines
240 B
PHP
<?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>");
|
|
}
|