check if key exists php

PHP
// Here's our fruity array
$fruits = ['apple', 'pear', 'banana'];

// Use it in an `if` statement
if (array_key_exists("banana", $fruits)) {
 // Do stuff because `banana` exists
}

// Store it for later use
$exists = array_key_exists("peach", $fruits);if( isset( $mydata['user_id'] ) ){
   // do something
}
Source

Also in PHP: