tdphp/td3/7.php

15 lines
242 B
PHP
Raw Permalink Normal View History

2023-03-06 15:21:44 +01:00
<?php
$tableau = array(
"jean-claude" => "nunes",
"philippe" => "ferrey",
"david" => "gatel",
"frederic" => "weis",
"flavien" => "motta",
"maxime" => "coutteau"
);
$cle = array_search("nunes", $tableau);
echo $cle;