PHP Verifique os eixsts da matriz associativa

$array = ["key" => "value"];

if (array_key_exists("key", $array)) {
  echo "Key exists";
}
Willian Pinheiro