Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php $a1=array("a"=>"rouge","b"=>"vert","c"=>"bleu"); $a2=array("c"=>"jaune","d"=>"noir","e"=>"marron"); $a3=array("f"=>"vert","c"=>"violet","g"=>"rouge"); $result=array_intersect_key($a1,$a2,$a3); print_r($result); ?> </body> </html>