Answers for "php if key equals value"

PHP
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";
}
?>
Posted by: Guest on February-24-2020

Code answers related to "php if key equals value"

Browse Popular Code Answers by Language