Je moet ingelogd zijn om te stemmen.
bool array_key_exists ( mixed $key, array $array)
<?php $array = array( "een" => 1, "twee" => 2, "drie" => 3 ); if( array_key_exists( "twee", $array ) ) { echo "Key twee bestaat"; } /*output Key twee bestaat */ ?>