<?PHP $array1 = array ( 'Sprache' => 'PHP', 'Tier' => 'Hund' ); if ( array_key_exists ( 'Sprache', $array1 ) ) { echo 'Index "Sprache" kommt in dem Array vor.'; } ?>
Index "Sprache" kommt in dem Array vor.