ItSolutionStuff.com

How to Check If a Value Exists in an Array in PHP?

By Hardik Savani • May 14, 2024
PHP

Hi Guys,

In this example, I will show you php array check value exists. I’m going to show you about how to check value exists in array in php. I would like to show you how to check key value exists in array in php. It's a simple example of how to check value exist in array or not in php. you will do the following things for php laravel check array value exists or not.

we will use in_array() function and isset() function to check value exists or not in php array. so, let's see the simple code of how to check value exists in array in php.

Example 1:

index.php

<?php

$array = ['id' => 1, 'name' => 'Hardik', 'email' => 'hardik@gmail.com'];

if (in_array('Hardik', $array)) {

echo('Value is exists.');

} else {

echo('Value is not exists.');

}

?>

Output:

Value is exists.

Example 2:

index.php

<?php

$array = ['id' => 1, 'name' => 'Hardik', 'email' => 'hardik@gmail.com'];

if (isset($array['name']) && $array['name'] == 'Hardik') {

echo('Value is exists.');

} else {

echo('Value is not exists.');

}

?>

Output:

Value is exists.

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

šŸ“ŗ Subscribe on YouTube

We Are Recommending You

ā˜…

How to Check Array Empty or Not in PHP?

Read Now →
ā˜…

PHP array_merge() Function Example

Read Now →
ā˜…

How to Merge Two Arrays with Unique Values in PHP?

Read Now →
ā˜…

How to Merge Two Array in PHP?

Read Now →
ā˜…

How to Remove String Keys in PHP Array?

Read Now →
ā˜…

How to Remove Numeric Keys in PHP Array?

Read Now →
ā˜…

How to Remove String Values in PHP Array?

Read Now →
ā˜…

How to Remove Numeric Values in PHP Array?

Read Now →
ā˜…

How to Get First 10 Elements of Array in PHP?

Read Now →
ā˜…

How to Get First 3 Elements of Array in PHP?

Read Now →
ā˜…

How to Get Last 10 Elements of Array in PHP?

Read Now →
ā˜…

How to Get Last 2 Elements of Array in PHP?

Read Now →
ā˜…

How to Convert String into Array in PHP?

Read Now →
ā˜…

How to Remove Last Element from Array in PHP?

Read Now →