php check key exists in json object code example
Example 1: if don't exist key json php
<?php
$search_array = array('first' => 1, 'second' => 4);
if (array_key_exists('first', $search_array)) {
echo "The 'first' element is in the array";
}
?>
Example 2: how to check if key is present in json in php
if( isset( $mydata['user_id'] ) ){
// do something
}