Answers for "check array has index php"

PHP
3

php array index exists

// 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);

// Return it directly
return array_key_exists("pineapple", $fruits);
Posted by: Guest on March-05-2020
0

check if index exists in array php

// Here's our data array
$data = ['email', 'phone', 'name'];

// Use it in an `if` statement
if (array_key_exists("email", $data)) {
 // Do stuff because `email` exists
}
Posted by: Guest on May-15-2022

Browse Popular Code Answers by Language